Last active
May 8, 2018 15:25
-
-
Save MihaZupan/d290fabbbf558c9d974c8d87155b3601 to your computer and use it in GitHub Desktop.
Moved to a repository at: https://github.com/MihaZupan/HttpToSocks5Proxy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text; | |
using System.Linq; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Threading.Tasks; | |
using System.Collections.Generic; | |
namespace MihaZupan | |
{ | |
/// <summary> | |
/// Acts like an HTTP(s) proxy but interfaces with a SOCKS5 proxy behind-the-scenes | |
/// </summary> | |
public class HttpToSocks5Proxy : IWebProxy | |
{ | |
// Go to https://github.com/MihaZupan/HttpToSocks5Proxy | |
} | |
} |
I posted it in a repository here:
https://github.com/MihaZupan/HttpToSocks5Proxy
Feel free to use it anywhere you'd like
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! Can I use this gist in my project? It seems that it does not include any license, is it possible to publish this gist on GitHub with specified license information?