Re: Re: How to access UDP Headers in IOHandlerAdapter

2023-01-02 Thread Jonathan Valliere
If it’s showing the wrong address then getting the more raw data won’t get you a different address. Likely the kubernetes mid plane is doing a reverse proxy or something for the traffic which is obfuscating the addresses. On Mon, Jan 2, 2023 at 9:27 PM Bobby R. Harsono wrote: > Remote Address

RE: Re: How to access UDP Headers in IOHandlerAdapter

2023-01-02 Thread Bobby R. Harsono
Remote Address I know i can get it via session.getRemoteAddress(), but since i deployed using kube8, for some reason, that method returns ip address of the worker machine, not actual source machine, this is probably known things / issue and we can't do anyhing currently; I was thinking maybe

Re: How to access UDP Headers in IOHandlerAdapter

2023-01-02 Thread Jonathan Valliere
What in the header are you looking for? On Mon, Jan 2, 2023 at 12:00 PM Bobby R. Harsono wrote: > Hello, > > How can i access UDP Headers details in IOHandlerAdapter? Since the > documentations doesn't mention about this neither i can found any > references out there, > > I need this to

How to access UDP Headers in IOHandlerAdapter

2023-01-02 Thread Bobby R. Harsono
Hello, How can i access UDP Headers details in IOHandlerAdapter? Since the documentations doesn't mention about this neither i can found any references out there, I need this to implement keep-alive or heartbeat mechanism for my UDP Server; Also, are there references i can read about