Added note to fix issue regarding the server binding as LAN IP instead of localhost

This commit is contained in:
Collin Smith
2020-06-29 21:48:56 -07:00
parent a205135c9e
commit cd93d379bd

View File

@ -137,7 +137,7 @@ public class Server implements PacketProcessor {
.option(ChannelOption.SO_BACKLOG, 128)
.childOption(ChannelOption.TCP_NODELAY, true)
.childOption(ChannelOption.SO_KEEPALIVE, true)
// .localAddress(address, port)
// .localAddress(address, port) // FIXME disable binding to LAN IP in favor of localhost
;
}