Package | Description |
---|---|
io.netty.handler.codec.haproxy |
Decodes an HAProxy proxy protocol header
|
Modifier and Type | Class and Description |
---|---|
class |
HAProxySSLTLV
Represents a
HAProxyTLV of the type HAProxyTLV.Type.PP2_TYPE_SSL . |
Modifier and Type | Field and Description |
---|---|
private java.util.List<HAProxyTLV> |
HAProxyMessage.tlvs |
private java.util.List<HAProxyTLV> |
HAProxySSLTLV.tlvs |
Modifier and Type | Method and Description |
---|---|
HAProxyTLV |
HAProxyTLV.copy() |
HAProxyTLV |
HAProxyTLV.duplicate() |
private static HAProxyTLV |
HAProxyMessage.readNextTLV(ByteBuf header) |
HAProxyTLV |
HAProxyTLV.replace(ByteBuf content) |
HAProxyTLV |
HAProxyTLV.retain() |
HAProxyTLV |
HAProxyTLV.retain(int increment) |
HAProxyTLV |
HAProxyTLV.retainedDuplicate() |
HAProxyTLV |
HAProxyTLV.touch() |
HAProxyTLV |
HAProxyTLV.touch(java.lang.Object hint) |
Modifier and Type | Method and Description |
---|---|
java.util.List<HAProxyTLV> |
HAProxySSLTLV.encapsulatedTLVs()
Returns an unmodifiable Set of encapsulated
HAProxyTLV s. |
private static java.util.List<HAProxyTLV> |
HAProxyMessage.readTlvs(ByteBuf header) |
java.util.List<HAProxyTLV> |
HAProxyMessage.tlvs()
Returns a list of
HAProxyTLV or an empty list if no TLVs are present. |
Constructor and Description |
---|
HAProxyMessage(HAProxyProtocolVersion protocolVersion,
HAProxyCommand command,
HAProxyProxiedProtocol proxiedProtocol,
java.lang.String sourceAddress,
java.lang.String destinationAddress,
int sourcePort,
int destinationPort,
java.util.List<HAProxyTLV> tlvs)
Creates a new instance
|
HAProxySSLTLV(int verify,
byte clientBitField,
java.util.List<HAProxyTLV> tlvs,
ByteBuf rawContent)
Creates a new HAProxySSLTLV
|