https://github.com/gingray/socks5client
Simple class providing socks5 functionality
https://github.com/gingray/socks5client
Last synced: about 1 year ago
JSON representation
Simple class providing socks5 functionality
- Host: GitHub
- URL: https://github.com/gingray/socks5client
- Owner: gingray
- Created: 2013-06-01T09:46:19.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-06-01T18:20:52.000Z (about 13 years ago)
- Last Synced: 2025-04-04T18:12:38.740Z (about 1 year ago)
- Language: C#
- Size: 109 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Simple functionality allow using Socket via Socks5 protocol
Example for HTTP request via Socks5 protocol:
string host = "www.google.com";
Socket socket = Socks5Client.Connect("localhost", 8081, host, 80, null, null);
easy isn't it?
Enjoy.