1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.example.securechat;
17
18 import io.netty.bootstrap.Bootstrap;
19 import io.netty.channel.Channel;
20 import io.netty.channel.ChannelFuture;
21 import io.netty.channel.EventLoopGroup;
22 import io.netty.channel.MultiThreadIoEventLoopGroup;
23 import io.netty.channel.nio.NioIoHandler;
24 import io.netty.channel.socket.nio.NioSocketChannel;
25 import io.netty.example.telnet.TelnetClient;
26 import io.netty.handler.ssl.SslContext;
27 import io.netty.handler.ssl.SslContextBuilder;
28 import io.netty.handler.ssl.util.InsecureTrustManagerFactory;
29
30 import java.io.BufferedReader;
31 import java.io.InputStreamReader;
32
33
34
35
36 public final class SecureChatClient {
37
38 static final String HOST = System.getProperty("host", "127.0.0.1");
39 static final int PORT = Integer.parseInt(System.getProperty("port", "8992"));
40
41 public static void main(String[] args) throws Exception {
42
43 final SslContext sslCtx = SslContextBuilder.forClient()
44 .trustManager(InsecureTrustManagerFactory.INSTANCE).build();
45
46 EventLoopGroup group = new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory());
47 try {
48 Bootstrap b = new Bootstrap();
49 b.group(group)
50 .channel(NioSocketChannel.class)
51 .handler(new SecureChatClientInitializer(sslCtx));
52
53
54 Channel ch = b.connect(HOST, PORT).sync().channel();
55
56
57 ChannelFuture lastWriteFuture = null;
58 BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
59 for (;;) {
60 String line = in.readLine();
61 if (line == null) {
62 break;
63 }
64
65
66 lastWriteFuture = ch.writeAndFlush(line + "\r\n");
67
68
69
70 if ("bye".equals(line.toLowerCase())) {
71 ch.closeFuture().sync();
72 break;
73 }
74 }
75
76
77 if (lastWriteFuture != null) {
78 lastWriteFuture.sync();
79 }
80 } finally {
81
82 group.shutdownGracefully();
83 }
84 }
85 }