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
.Methods in io.netty.handler.codec.haproxy that return HAProxyTLV Modifier and Type Method Description HAProxyTLV
HAProxyTLV. copy()
HAProxyTLV
HAProxyTLV. duplicate()
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.java.util.List<HAProxyTLV>
HAProxyMessage. tlvs()
Returns a list ofHAProxyTLV
or an empty list if no TLVs are present.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 HAProxySSLTLV
-