| Package | Description |
|---|---|
| COM.claymoresystems.ptls |
| Constructor and Description |
|---|
SSLServerSocket(SSLContext ctx,
int port)
Create an SSLServerSocket specifying the port and backlog
|
SSLServerSocket(SSLContext ctx,
java.lang.Integer port,
java.lang.Integer backlog,
java.net.InetAddress inetaddr)
Create an SSLServerSocket specifying the port, backlog, and listen
address.
|
SSLServerSocket(SSLContext ctx,
int port,
int backlog)
Create an SSLServerSocket specifying the port only
|
SSLServerSocket(SSLContext ctx,
int port,
int backlog,
java.net.InetAddress inetaddr)
Create an SSLServerSocket specifying the port, backlog, and listen
address
|
SSLSocket(SSLContext ctx,
java.net.InetAddress addr,
int port)
Creates a stream socket and connects it to the specified port number at the specified IP address performing the SSL Handshake
|
SSLSocket(SSLContext ctx,
java.net.InetAddress addr,
int port,
java.net.InetAddress localAddr,
int localPort)
Creates a stream socket and connects it to the specified port number at the specified IP address performing the SSL Handshake
|
SSLSocket(SSLContext ctx,
java.io.InputStream input,
java.io.OutputStream output,
java.lang.String host,
int port,
int how)
Create an SSLSocket and connect it to the server on the
using the specified input stream and output stream
|
SSLSocket(SSLContext ctx,
java.net.Socket sock,
java.lang.String host,
int port,
int how)
Create an SSLSocket around the specified socket.
|
SSLSocket(SSLContext ctx,
java.lang.String remote_addr,
int port)
Create an SSLSocket and connect it to the server on the
specified host and port, doing the SSLHandshake
|
SSLSocket(SSLContext ctx,
java.lang.String remote_addr,
java.lang.Integer remote_port)
Create an SSLSocket and connect it to the server on the
specified host and port, doing the SSLHandshake.
|
SSLSocket(SSLContext ctx,
java.lang.String host,
int port,
java.net.InetAddress localAddr,
int localPort)
Creates a stream socket and connects it to the specified port number at the specified host, performing the SSL Handshake
|
Copyright (c) 1999-2001 Claymore Systems, Inc., All Rights Reserved.