Subversion Repositories Code-Repo

Rev

Rev 87 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 87 Rev 91
Line 19... Line 19...
19
import java.util.concurrent.Executors;
19
import java.util.concurrent.Executors;
20
 
20
 
21
import org.jboss.netty.bootstrap.ServerBootstrap;
21
import org.jboss.netty.bootstrap.ServerBootstrap;
22
import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
22
import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
23
 
23
 
24
/**
-
 
25
 * Simple SSL chat server modified from {@link TelnetServer}.
-
 
26
 *
-
 
27
 * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
-
 
28
 * @author <a href="http://gleamynode.net/">Trustin Lee</a>
-
 
29
 *
-
 
30
 * @version $Rev: 2080 $, $Date: 2010-01-26 18:04:19 +0900 (Tue, 26 Jan 2010) $
-
 
31
 */
-
 
32
public class LATMBServer {
24
public class LATMBServer {
33
 
25
 
34
    public static void main(String[] args) throws Exception {
26
    public static void main(String[] args) throws Exception {
35
        // Configure the server.
27
        // Configure the server.
36
        ServerBootstrap bootstrap = new ServerBootstrap(
28
        ServerBootstrap bootstrap = new ServerBootstrap(