Enum HAProxyProxiedProtocol

java.lang.Object
java.lang.Enum<HAProxyProxiedProtocol>
io.netty.handler.codec.haproxy.HAProxyProxiedProtocol
All Implemented Interfaces:
Serializable, Comparable<HAProxyProxiedProtocol>

public enum HAProxyProxiedProtocol extends Enum<HAProxyProxiedProtocol>
A protocol proxied by HAProxy which is represented by its transport protocol and address family.
  • Enum Constant Details

    • UNKNOWN

      public static final HAProxyProxiedProtocol UNKNOWN
      The UNKNOWN represents a connection which was forwarded for an unknown protocol and an unknown address family.
    • TCP4

      public static final HAProxyProxiedProtocol TCP4
      The TCP4 represents a connection which was forwarded for an IPv4 client over TCP.
    • TCP6

      public static final HAProxyProxiedProtocol TCP6
      The TCP6 represents a connection which was forwarded for an IPv6 client over TCP.
    • UDP4

      public static final HAProxyProxiedProtocol UDP4
      The UDP4 represents a connection which was forwarded for an IPv4 client over UDP.
    • UDP6

      public static final HAProxyProxiedProtocol UDP6
      The UDP6 represents a connection which was forwarded for an IPv6 client over UDP.
    • UNIX_STREAM

      public static final HAProxyProxiedProtocol UNIX_STREAM
      The UNIX_STREAM represents a connection which was forwarded for a UNIX stream socket.
    • UNIX_DGRAM

      public static final HAProxyProxiedProtocol UNIX_DGRAM
      The UNIX_DGRAM represents a connection which was forwarded for a UNIX datagram socket.
  • Method Details