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 SecureChatClientPipelineFactory implements
34 ChannelPipelineFactory {
35
36 public ChannelPipeline getPipeline() throws Exception {
37 ChannelPipeline pipeline = pipeline();
38
39
40
41
42
43
44
45 SSLEngine engine =
46 SecureChatSslContextFactory.getClientContext().createSSLEngine();
47 engine.setUseClientMode(true);
48
49 pipeline.addLast("ssl", new SslHandler(engine));
50
51
52 pipeline.addLast("framer", new DelimiterBasedFrameDecoder(
53 8192, Delimiters.lineDelimiter()));
54 pipeline.addLast("decoder", new StringDecoder());
55 pipeline.addLast("encoder", new StringEncoder());
56
57
58 pipeline.addLast("handler", new SecureChatClientHandler());
59
60 return pipeline;
61 }
62 }