Hi Folks,
I have a following code:
FilterChainContext ctx = ...;
Connection<InetSocketAddress> connection = ctx.getConnection();
In case of UDP on the server side I get not connected exception if I use:
connection.write(connection.getPeerAddress(), msg);
but works if I use like this:
connection.write((InetSocketAddress)ctx.getAddress(), msg);
If it expected behavior?
Thanks in advance,
Tigran.