Package org.jruby.pg.internal.io

Examples of org.jruby.pg.internal.io.SecureSocketWrapper


            socket.close();
            throw new PostgresqlException("Cannot establish ssl socket with server", null);
          }
          break;
        case 'S':
          socket = new SecureSocketWrapper(socket);
          socket.doHandshake();
          break;
        }
      }
View Full Code Here

TOP

Related Classes of org.jruby.pg.internal.io.SecureSocketWrapper

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.