Package nu.fw.jeti.backend.Connect

Examples of nu.fw.jeti.backend.Connect.DummySSLSocketFactory


  public void connect(String host, int port,Handlers handlers) throws IOException
  {
    if(port==5222)port=5223;
    JabberHandler jH = new JabberHandler(this,handlers);
    //Socket socket = new Socket(host,port);
    Socket socket = new DummySSLSocketFactory().createSocket(host,port);
    new Input(socket.getInputStream(),this,jH);
    output = new Output(socket,host,this,socket.getOutputStream());
    server = host;
  }
View Full Code Here

TOP

Related Classes of nu.fw.jeti.backend.Connect.DummySSLSocketFactory

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.