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.channel.ChannelInitializer;
19 import io.netty.channel.socket.SocketChannel;
20 import io.netty.handler.codec.socksx.SocksPortUnificationServerHandler;
21 import io.netty.handler.logging.LogLevel;
22 import io.netty.handler.logging.LoggingHandler;
23
24 public final class SocksServerInitializer extends ChannelInitializer<SocketChannel> {
25 @Override
26 public void initChannel(SocketChannel ch) throws Exception {
27 ch.pipeline().addLast(
28 new LoggingHandler(LogLevel.DEBUG),
29 new SocksPortUnificationServerHandler(),
30 SocksServerHandler.INSTANCE);
31 }
32 }