.NET Sockets and Proxy Servers
- by Tristan
I'm trying to make some source code for a library I downloaded work with a proxy server. The library uses sockets to connect to a server but if the client using the library is behind a proxy server it can't connect.
Does anyone know how I can modify the socket to be able to connect to the server through a proxy server?
I really want to just do this with the sockets in the library without having to change too much code to use WebRequest or something similar