Packages
Yet another socks5 server implementation when running alone(iex -S mix), it will listen on port 9898 import in your project and start it with SocksServer.Listener.Sup.start_link(9898) Project is published with MIT License
Current section
Files
Jump to
Current section
Files
lib/elixir_socks5.ex
defmodule ElixirSocks5 do
use Application
def start(_type, _args) do
SocksServer.Listener.Sup.start_link(9898)
end
end