Class EpollServerSocketChannel

    • Field Detail

      • tcpMd5SigAddresses

        private volatile java.util.Collection<java.net.InetAddress> tcpMd5SigAddresses
    • Constructor Detail

      • EpollServerSocketChannel

        public EpollServerSocketChannel()
      • EpollServerSocketChannel

        public EpollServerSocketChannel​(int fd)
      • EpollServerSocketChannel

        EpollServerSocketChannel​(LinuxSocket fd)
      • EpollServerSocketChannel

        EpollServerSocketChannel​(LinuxSocket fd,
                                 boolean active)
    • Method Detail

      • doBind

        protected void doBind​(java.net.SocketAddress localAddress)
                       throws java.lang.Exception
        Description copied from class: AbstractChannel
        Bind the Channel to the SocketAddress
        Overrides:
        doBind in class AbstractEpollChannel
        Throws:
        java.lang.Exception
      • remoteAddress

        public java.net.InetSocketAddress remoteAddress()
        Description copied from interface: Channel
        Returns the remote address where this channel is connected to. The returned SocketAddress is supposed to be down-cast into more concrete type such as InetSocketAddress to retrieve the detailed information.
        Specified by:
        remoteAddress in interface Channel
        Specified by:
        remoteAddress in interface ServerSocketChannel
        Overrides:
        remoteAddress in class AbstractChannel
        Returns:
        the remote address of this channel. null if this channel is not connected. If this channel is not connected but it can receive messages from arbitrary remote addresses (e.g. DatagramChannel, use DefaultAddressedEnvelope.recipient() to determine the origination of the received message as this method will return null.
      • localAddress

        public java.net.InetSocketAddress localAddress()
        Description copied from interface: Channel
        Returns the local address where this channel is bound to. The returned SocketAddress is supposed to be down-cast into more concrete type such as InetSocketAddress to retrieve the detailed information.
        Specified by:
        localAddress in interface Channel
        Specified by:
        localAddress in interface ServerSocketChannel
        Overrides:
        localAddress in class AbstractChannel
        Returns:
        the local address of this channel. null if this channel is not bound.
      • tcpMd5SigAddresses

        java.util.Collection<java.net.InetAddress> tcpMd5SigAddresses()
      • setTcpMd5Sig

        void setTcpMd5Sig​(java.util.Map<java.net.InetAddress,​byte[]> keys)
                   throws java.io.IOException
        Throws:
        java.io.IOException