Create a SOCKS Proxy that does nothing special

Posted by rwired on Stack Overflow See other posts from Stack Overflow or by rwired
Published on 2009-08-20T04:30:39Z Indexed on 2010/05/11 9:54 UTC
Read the original article Hit count: 300

Filed under:
|
|
|

I am trying to create a SOCKS proxy in C++ that runs as a background process on localhost.

If the user's browser is configured to use the proxy, I want all HTTP requests to be passed along through the normal TCP/IP stack. i.e. The browser will behave exactly as it normally would.

Eventually I will add another layer which will check to see if the requested resource matches certain criteria, and if so will handle the request differently. But for now I'm just trying to solve the basic problem... how to create a SOCKS proxy that doesn't change anything?

© Stack Overflow or respective owner

Related posts about c++

Related posts about Windows