1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.example.socksproxy;
17
18 import io.netty.bootstrap.ServerBootstrap;
19 import io.netty.channel.EventLoopGroup;
20 import io.netty.channel.MultiThreadIoEventLoopGroup;
21 import io.netty.channel.nio.NioIoHandler;
22 import io.netty.channel.socket.nio.NioServerSocketChannel;
23 import io.netty.handler.logging.LogLevel;
24 import io.netty.handler.logging.LoggingHandler;
25
26 public final class SocksServer {
27
28 static final int PORT = Integer.parseInt(System.getProperty("port", "1080"));
29
30 public static void main(String[] args) throws Exception {
31 EventLoopGroup bossGroup = new MultiThreadIoEventLoopGroup(1, NioIoHandler.newFactory());
32 EventLoopGroup workerGroup = new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory());
33 try {
34 ServerBootstrap b = new ServerBootstrap();
35 b.group(bossGroup, workerGroup)
36 .channel(NioServerSocketChannel.class)
37 .handler(new LoggingHandler(LogLevel.INFO))
38 .childHandler(new SocksServerInitializer());
39 b.bind(PORT).sync().channel().closeFuture().sync();
40 } finally {
41 bossGroup.shutdownGracefully();
42 workerGroup.shutdownGracefully();
43 }
44 }
45 }