| javax.net.ssl.SSLSocketFactory org.apache.jmeter.util.HttpSSLProtocolSocketFactory
HttpSSLProtocolSocketFactory | public class HttpSSLProtocolSocketFactory extends SSLSocketFactory implements SecureProtocolSocketFactory(Code) | | Derived from EasySSLProtocolFactory
Used by JsseSSLManager to set up the HttpClient and Java https socket handling
|
Method Summary | |
public Socket | createSocket(String host, int port, InetAddress localAddress, int localPort, HttpConnectionParams params) Attempts to get a new socket connection to the given host within the given time limit. | public Socket | createSocket(String host, int port) | public Socket | createSocket(Socket socket, String host, int port, boolean autoClose) | public Socket | createSocket(String host, int port, InetAddress clientHost, int clientPort) | public Socket | createSocket(InetAddress host, int port) | public Socket | createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) | public String[] | getDefaultCipherSuites() | public String[] | getSupportedCipherSuites() |
HttpSSLProtocolSocketFactory | public HttpSSLProtocolSocketFactory(JsseSSLManager sslManager, int cps)(Code) | | |
createSocket | public Socket createSocket(String host, int port, InetAddress localAddress, int localPort, HttpConnectionParams params) throws IOException, UnknownHostException, ConnectTimeoutException(Code) | | Attempts to get a new socket connection to the given host within the given time limit.
Parameters: host - the host name/IP Parameters: port - the port on the host Parameters: localAddress - the local host name/IP to bind the socket to Parameters: localPort - the port on the local machine Parameters: params - HttpConnectionParams Http connection parameters Socket a new socket throws: IOException - if an I/O error occurs while creating the socket throws: UnknownHostException - if the IP address of the host cannot bedetermined |
getDefaultCipherSuites | public String[] getDefaultCipherSuites()(Code) | | |
getSupportedCipherSuites | public String[] getSupportedCipherSuites()(Code) | | |
|
|