Package | Description |
---|---|
io.netty.handler.codec.haproxy |
Decodes an HAProxy proxy protocol header
|
Modifier and Type | Field and Description |
---|---|
private HAProxyProxiedProtocol |
HAProxyMessage.proxiedProtocol |
Modifier and Type | Method and Description |
---|---|
HAProxyProxiedProtocol |
HAProxyMessage.proxiedProtocol()
Returns the
HAProxyProxiedProtocol of this HAProxyMessage . |
static HAProxyProxiedProtocol |
HAProxyProxiedProtocol.valueOf(byte tpafByte)
Returns the
HAProxyProxiedProtocol represented by the specified byte. |
static HAProxyProxiedProtocol |
HAProxyProxiedProtocol.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HAProxyProxiedProtocol[] |
HAProxyProxiedProtocol.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
HAProxyMessage(HAProxyProtocolVersion protocolVersion,
HAProxyCommand command,
HAProxyProxiedProtocol proxiedProtocol,
java.lang.String sourceAddress,
java.lang.String destinationAddress,
int sourcePort,
int destinationPort)
Creates a new instance
|
HAProxyMessage(HAProxyProtocolVersion protocolVersion,
HAProxyCommand command,
HAProxyProxiedProtocol proxiedProtocol,
java.lang.String sourceAddress,
java.lang.String destinationAddress,
java.lang.String sourcePort,
java.lang.String destinationPort)
Creates a new instance
|