Hi,
because of the restart problem I mentioned before, I would like to
modify the proxy.c by implementing the communication with HTTP "POST"
and "GET" requests.
I've I'm right, proxy.c defines only the behavior of the client. Now I
wondered where I find the Implementation of the server-side. W
Hi,
because of the restart problem I mentioned before, I would like to
modify the proxy.c by implementing the communication with HTTP "POST"
and "GET" requests.
I've I'm right, proxy.c defines only the behavior of the client. Now I
wondered where I find the Implementation of the server-side. W
Hi,
is it right, that proxy.c only is needed to establish a connection via
the proxy. After that the communication is done via Socks.c?
And what does
/* format Socks CONNECT message */
buf[0] = '\x05';/* VER = 5 */
buf[1] = '\x01';/* CMD = 1 (CONNECT) */
buf[2] = '\x00';