2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-29 13:17:43 +00:00

Removed SO_BACKLOG because of a log message about it being unsupported

This commit is contained in:
Albert Vaca 2016-06-16 00:38:30 +02:00
parent e5c7adba3a
commit 5fa43f8979

View File

@ -406,9 +406,6 @@ public class LanLinkProvider extends BaseLinkProvider {
tcpBootstrap.group(bossGroup, workerGroup);
tcpBootstrap.channel(NioServerSocketChannel.class);
tcpBootstrap.option(ChannelOption.SO_BACKLOG, 100);
tcpBootstrap.childOption(ChannelOption.SO_BACKLOG, 100);
tcpBootstrap.option(ChannelOption.SO_KEEPALIVE, true);
tcpBootstrap.childOption(ChannelOption.SO_KEEPALIVE, true);