Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using a SOCKS proxy from C++ [closed]

Tags:

c++

socks

How I can use a SOCKS proxy from my C++ socket program?

like image 258
Emma Avatar asked May 11 '10 09:05

Emma


2 Answers

Your question is a bit vague, but I'll try to answer it anyway.

If found these links that might help you:

  • A C++ socket library - Includes an sample of a Web Proxy
  • Another C++ socket library - Includes also an example of Proxy

Using the SOCKS RFC and the cited links, you might be able to create a SOCKS proxy.

I don't like posting links as an answer but since you don't clearly state what you want to achieve, I can't really be more accurate...

like image 147
ereOn Avatar answered Oct 22 '22 01:10

ereOn


Here, use the socks wrapper from code project: http://www.codeproject.com/KB/IP/Socks.aspx

like image 21
0xDEAD BEEF Avatar answered Oct 22 '22 02:10

0xDEAD BEEF