tags:

views:

79

answers:

2

I'm looking to add socks 4/5 support to my windows C++ application. Can you recommend a decent library, or resource?

Thanks,

+1  A: 

This wrapper for Berkely Sockets API in C is ironclad.

Josh Stodola
+1  A: 

SOCKS proxy protocol is not the same thing as sockets. Under Windows I use WinINet or WinHttp api's but i'm looking for a more portable generic mechanism myself. Maybe i'll check out the Firefox/Mozilla code.

Menace