You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ability to read TLVs of Proxy Protocol header from NetSocket. To be more clear, in HAProxyMessageCompletionHandler#decode function, we only use HAProxyMessage msg only for overriding remote address and local address, however, in some use case, there are information in the proxy protocol header that are store in List<HAProxyTLV> tlvs of msg that are needed. Currently there is not a way to access that data when enabling proxy protocol in NetServerOptions of NetServer
The text was updated successfully, but these errors were encountered:
I see, you could like to access those info from the NetSocket ?
Yes, NetSocket is created from NetServer (in #connectHandler), when NetServer is init with proxy protocol enabled then there should be a way to access proxy protocol data, the current way of getting only remote/local address isn't sufficient for all use cases. Thanks
Not sure if I fully understand this, TLVs are represented as a list in HAProxyMessage (of netty), could you explain more how the map works here? Thanks.
Describe the feature
Ability to read TLVs of Proxy Protocol header from NetSocket. To be more clear, in HAProxyMessageCompletionHandler#decode function, we only use
HAProxyMessage msg
only for overriding remote address and local address, however, in some use case, there are information in the proxy protocol header that are store inList<HAProxyTLV> tlvs
ofmsg
that are needed. Currently there is not a way to access that data when enabling proxy protocol in NetServerOptions of NetServerThe text was updated successfully, but these errors were encountered: