File: socks.el.html
This is an implementation of the SOCKS v5 protocol as defined in RFC 1928.
TODO
- Finish the redirection rules stuff
- Implement composition of servers. Recursively evaluate the
redirection rules and do SOCKS-over-HTTP and SOCKS-in-SOCKS
Defined variables (4)
socks-noproxy | List of regexps matching hosts that we should not socksify connections to. |
socks-nslookup-program | If non-nil then a string naming the nslookup program. |
socks-override-functions | If non-nil, overwrite ‘open-network-stream’ function with SOCKSified version. |
socks-server | Socks server. |
Defined functions (16)
socks--open-network-stream | (ORIG-FUN NAME BUFFER HOST SERVICE &rest PARAMS) |
socks-chap-auth | (PROC) |
socks-cram-auth | (PROC) |
socks-filter | (PROC STRING) |
socks-find-route | (HOST SERVICE) |
socks-find-services-entry | (SERVICE &optional UDP) |
socks-gssapi-auth | (PROC) |
socks-nslookup-host | (HOST) |
socks-open-connection | (SERVER-INFO) |
socks-open-network-stream | (NAME BUFFER HOST SERVICE) |
socks-register-authentication-method | (ID DESC CALLBACK) |
socks-send-command | (PROC COMMAND ATYPE ADDRESS PORT) |
socks-unregister-authentication-method | (ID) |
socks-username/password-auth | (PROC) |
socks-username/password-auth-filter | (PROC STR) |
socks-wait-for-state-change | (PROC CUR-STATE) |