Package org.apache.http.conn.scheme
Interface SchemeLayeredSocketFactory
-
- All Superinterfaces:
SchemeSocketFactory
- All Known Implementing Classes:
SSLSocketFactory
@Deprecated public interface SchemeLayeredSocketFactory extends SchemeSocketFactory
Deprecated.(4.3) useLayeredConnectionSocketFactoryExtendedSchemeSocketFactoryinterface for layered sockets such as SSL/TLS.- Since:
- 4.2
-
-
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, HttpParams params)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, HttpParams params) 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 hostparams- HTTP parameters- 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
-
-