Package com.firefly.server.http

Examples of com.firefly.server.http.SSLDecoder


    log.info("keep alive [{}]", config.isKeepAlive());
   
    if(config.isSecure()) {
      log.info("enable SSL");
      Server server = new TcpServer(
          new SSLDecoder(new HttpDecoder(config)),
          new SSLEncoder(),
          new HttpHandler(controller, config),
          config.getMaxConnectionTimeout());
      server.start(config.getHost(), config.getPort());
    } else {
View Full Code Here

TOP

Related Classes of com.firefly.server.http.SSLDecoder

Copyright © 2018 www.massapicom. 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.