Package test.net.ssl

Source Code of test.net.ssl.Test

package test.net.ssl;

import com.firefly.net.Server;
import com.firefly.net.tcp.TcpServer;

public class Test {

  public static void main(String[] args) throws Throwable {
    Server server = new TcpServer(new SSLDecoder(), new SSLEncoder(), new DumpHandler(), 1000 * 60)
    server.start("localhost", 7676);
  }
 
  @org.junit.Test
  public void test() {

  }

}
TOP

Related Classes of test.net.ssl.Test

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.