Uses of Class
io.netty.handler.codec.haproxy.HAProxyTLV
-
Packages that use HAProxyTLV Package Description io.netty.handler.codec.haproxy Decodes an HAProxy proxy protocol header -
-
Uses of HAProxyTLV in io.netty.handler.codec.haproxy
Subclasses of HAProxyTLV in io.netty.handler.codec.haproxy Modifier and Type Class Description class
HAProxySSLTLV
Represents aHAProxyTLV
of the typeHAProxyTLV.Type.PP2_TYPE_SSL
.Fields in io.netty.handler.codec.haproxy with type parameters of type HAProxyTLV Modifier and Type Field Description private java.util.List<HAProxyTLV>
HAProxyMessage. tlvs
private java.util.List<HAProxyTLV>
HAProxySSLTLV. tlvs
Methods in io.netty.handler.codec.haproxy that return HAProxyTLV Modifier and Type Method Description HAProxyTLV
HAProxyTLV. copy()
HAProxyTLV
HAProxyTLV. duplicate()
private static HAProxyTLV
HAProxyMessage. readNextTLV(ByteBuf header, int nestingLevel)
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)
Methods in io.netty.handler.codec.haproxy that return types with arguments of type HAProxyTLV Modifier and Type Method Description java.util.List<HAProxyTLV>
HAProxySSLTLV. encapsulatedTLVs()
Returns an unmodifiable Set of encapsulatedHAProxyTLV
s.private static java.util.List<HAProxyTLV>
HAProxyMessage. readTlvs(ByteBuf header)
java.util.List<HAProxyTLV>
HAProxyMessage. tlvs()
Returns a list ofHAProxyTLV
or an empty list if no TLVs are present.Methods in io.netty.handler.codec.haproxy with parameters of type HAProxyTLV Modifier and Type Method Description private static void
HAProxyMessageEncoder. encodeTlv(HAProxyTLV haProxyTLV, ByteBuf out)
Method parameters in io.netty.handler.codec.haproxy with type arguments of type HAProxyTLV Modifier and Type Method Description private static void
HAProxyMessageEncoder. encodeTlvs(java.util.List<HAProxyTLV> haProxyTLVs, ByteBuf out)
Constructor parameters in io.netty.handler.codec.haproxy with type arguments of type HAProxyTLV Constructor Description HAProxyMessage(HAProxyProtocolVersion protocolVersion, HAProxyCommand command, HAProxyProxiedProtocol proxiedProtocol, java.lang.String sourceAddress, java.lang.String destinationAddress, int sourcePort, int destinationPort, java.util.List<? extends HAProxyTLV> tlvs)
Creates a new instance of HAProxyMessage.HAProxySSLTLV(int verify, byte clientBitField, java.util.List<HAProxyTLV> tlvs)
Creates a new HAProxySSLTLVHAProxySSLTLV(int verify, byte clientBitField, java.util.List<HAProxyTLV> tlvs, ByteBuf rawContent)
Creates a new HAProxySSLTLV
-