Hi there,
There JSSE class SSL SocketFactory in java with methods:
createSocket(socket s, String host, int port, boolean autoclose) where:
s- existing socket
host - the server host
port - the server port
autclose - close the underlying socket
This constructor can be used when tunneling SSL through a proxy.
My qusestion is whether openssl implements a similar function in C? I am also looking for SSL tunneling code somewhere on the NET. Thanks in advance.
Alex Cosic