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
elixir_socks5 lib elixir_socks5.ex
Raw

lib/elixir_socks5.ex

defmodule ElixirSocks5 do
use Application
def start(_type, _args) do
SocksServer.Listener.Sup.start_link(9898)
end
end