* @return * @throws IOException * @throws ClassNotFoundException */ public Object getObjectMessage() throws IOException, ClassNotFoundException { objIn = new ObjectInputStream(sock.getInputStream()); return objIn.readObject(); } }
114: socket.connect(new InetSocketAddress(address, port), timeout); - 116: socket.setEnabledProtocols(this.jsseSecurityDomain.getProtocols()); - 118: socket.setEnabledCipherSuites(this.jsseSecurityDomain.getCipherSuites()); 119: socket.setNeedClientAuth(this.jsseSecurityDomain.isClientAuth()); Full Snippet Info
554: sslSocket.setUseClientMode(isClientMode); 555: sslSocket.setEnableSessionCreation(isCreation); - 559: sslSocket.setNeedClientAuth(isNeedClientAuth); 560: sslSocket.setWantClientAuth(isWantClientAuth); - 563: sslSocket.setEnabledCipherSuites(suites); - 566: sslSocket.setEnabledProtocols(protocols); - 568: sslSocket.startHandshake(); Full Snippet Info
247: ssl.startHandshake(); - 249: SSLSession session = ssl.getSession(); Full Snippet Info