An open API service indexing awesome lists of open source software.

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

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.