1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.jboss.netty.example.securechat;
17
18 import static org.jboss.netty.channel.Channels.*;
19
20 import javax.net.ssl.SSLEngine;
21
22 import org.jboss.netty.channel.ChannelPipeline;
23 import org.jboss.netty.channel.ChannelPipelineFactory;
24 import org.jboss.netty.handler.codec.frame.DelimiterBasedFrameDecoder;
25 import org.jboss.netty.handler.codec.frame.Delimiters;
26 import org.jboss.netty.handler.codec.string.StringDecoder;
27 import org.jboss.netty.handler.codec.string.StringEncoder;
28 import org.jboss.netty.handler.ssl.SslHandler;
29
30
31
32
33 public class SecureChatServerPipelineFactory implements
34 ChannelPipelineFactory {
35
36 public ChannelPipeline getPipeline() throws Exception {
37 ChannelPipeline pipeline = pipeline();
38
39
40
41
42
43
44
45
46
47
48 SSLEngine engine =
49 SecureChatSslContextFactory.getServerContext().createSSLEngine();
50 engine.setUseClientMode(false);
51
52 pipeline.addLast("ssl", new SslHandler(engine));
53
54
55 pipeline.addLast("framer", new DelimiterBasedFrameDecoder(
56 8192, Delimiters.lineDelimiter()));
57 pipeline.addLast("decoder", new StringDecoder());
58 pipeline.addLast("encoder", new StringEncoder());
59
60
61 pipeline.addLast("handler", new SecureChatServerHandler());
62
63 return pipeline;
64 }
65 }