1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.example.http.snoop;
17
18 import io.netty.channel.ChannelInitializer;
19 import io.netty.channel.ChannelPipeline;
20 import io.netty.channel.socket.SocketChannel;
21 import io.netty.handler.codec.http.HttpRequestDecoder;
22 import io.netty.handler.codec.http.HttpResponseEncoder;
23 import io.netty.handler.ssl.SslContext;
24
25 public class HttpSnoopServerInitializer extends ChannelInitializer<SocketChannel> {
26
27 private final SslContext sslCtx;
28
29 public HttpSnoopServerInitializer(SslContext sslCtx) {
30 this.sslCtx = sslCtx;
31 }
32
33 @Override
34 public void initChannel(SocketChannel ch) {
35 ChannelPipeline p = ch.pipeline();
36 if (sslCtx != null) {
37 p.addLast(sslCtx.newHandler(ch.alloc()));
38 }
39 p.addLast(new HttpRequestDecoder());
40
41
42 p.addLast(new HttpResponseEncoder());
43
44
45 p.addLast(new HttpSnoopServerHandler());
46 }
47 }