Skip to content

Instantly share code, notes, and snippets.

@MihaZupan
Last active May 8, 2018 15:25
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MihaZupan/d290fabbbf558c9d974c8d87155b3601 to your computer and use it in GitHub Desktop.
Save MihaZupan/d290fabbbf558c9d974c8d87155b3601 to your computer and use it in GitHub Desktop.
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
}
}
@karb0f0s
Copy link

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?

@MihaZupan
Copy link
Author

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