Package org.apache.http.conn.scheme
Interface LayeredSchemeSocketFactory
-
- All Superinterfaces:
SchemeSocketFactory
- All Known Implementing Classes:
SSLSocketFactory
@Deprecated public interface LayeredSchemeSocketFactory extends SchemeSocketFactory
Deprecated.(4.2) useSchemeLayeredSocketFactoryExtendedSchemeSocketFactoryinterface for layered sockets such as SSL/TLS.- Since:
- 4.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.net.SocketcreateLayeredSocket(java.net.Socket socket, java.lang.String target, int port, boolean autoClose)Deprecated.Returns a socket connected to the given host that is layered over an existing socket.-
Methods inherited from interface org.apache.http.conn.scheme.SchemeSocketFactory
connectSocket, createSocket, isSecure
-
-
-
-
Method Detail
-
createLayeredSocket
java.net.Socket createLayeredSocket(java.net.Socket socket, java.lang.String target, int port, boolean autoClose) throws java.io.IOException, java.net.UnknownHostExceptionDeprecated.Returns a socket connected to the given host that is layered over an existing socket. Used primarily for creating secure sockets through proxies.- Parameters:
socket- the existing sockettarget- the name of the target host.port- the port to connect to on the target hostautoClose- a flag for closing the underling socket when the created socket is closed- Returns:
- Socket a new socket
- Throws:
java.io.IOException- if an I/O error occurs while creating the socketjava.net.UnknownHostException- if the IP address of the host cannot be determined
-
-