Initiate a connection on a socket (via a SOCKS server)
#include <sys/types.h>
#include <sys/socket.h>
int Rconnect( int s,
const struct sockaddr * name,
int namelen);
socks3r.lib, socks3s.lib
The Rconnect() function is a cover function for connect() - the difference is that Rconnect() does its job via a SOCKS server.
For more information about SOCKS and its libraries, see Appendix A: SOCKS - A Basic Firewall.
| Safety: | |
|---|---|
| Interrupt handler | No |
| Signal handler | No |
| Thread | No |
Appendix A: SOCKS - A Basic Firewall