Tagged Questions

2
votes
3answers
281 views

SOCKS in C/C++ or another language?

How do i add SOCKS support to my application? and where can i get the libs? any help appreciated thanks
1
vote
2answers
154 views

Arranging bytes in a packet

If I need to create a packet like this: field 1: SOCKS protocol version, 1 byte field 2: status, 1 byte: field 3: reserved, must be 0x00 field 4: address type, 1 byte: field 5: destination address ...
1
vote
1answer
144 views

What's going wrong with this SOCKS proxy request?

I'm currently trying to implement SOCKS 4/5 functionality in my C++ program (i.e. requests to arbitrary protocols and hosts can be redirected through a given SOCKS proxy if desired). I'm developing ...
1
vote
3answers
1k views

Using a SOCKS proxy from C++

How I can use a SOCKS proxy from my C++ socket program?
1
vote
2answers
1k views

Create a SOCKS Proxy that does nothing special

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 ...
0
votes
2answers
39 views

boost asio - write equivalent piece of code

I have this piece of code using standard sockets: void set_fds(int sock1, int sock2, fd_set *fds) { FD_ZERO (fds); FD_SET (sock1, fds); FD_SET (sock2, fds); } void do_proxy(int client, ...
0
votes
0answers
36 views

Are there any embeddable socks proxy servers that tunnels traffic through a remote host via ssh?

ssh -D 9191 ronald@ssh.somehost.com will create a socks proxy locally that will tunnel all traffic through the remote host. Is it possible to build this in to an application C++ or C and make it ...
0
votes
2answers
123 views

a problem in socks.h

i use this (http://www.codeproject.com/KB/IP/Socks.aspx) lib in my socket programing in c++ and copy the socks.h in include folder and write this code: #include <windows.h> #include ...
0
votes
2answers
303 views

Socks Client Support

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