Reputation: 57304
Is anyone aware of any documentation on the meaning and/or effect of the various setting of Nettys ChannelOptions?
Upvotes: 0
Views: 958
Reputation: 518
These channel options map directly to properties on ChannelConfig and its subclasses like SocketChannelConfig or DatagramChannelConfig. The javadoc for those types goes into more detail on the various options. Many of these correspond to OS socket options as Alex said.
Upvotes: 1
Reputation: 8813
Those are socket options and descriptions can be found in your operating system's setsockopt documentation (SET SOCKet OPTions). Here is the documentation for Windows and FreeBSD.
Upvotes: 1