No description
Find a file
2020-01-08 22:44:44 +00:00
LICENSE First commit 2020-01-08 21:45:57 +00:00
README.adoc Add client, improve docs 2020-01-08 22:44:44 +00:00
socks5.nim Add client, improve docs 2020-01-08 22:44:44 +00:00
socks5.nimble First commit 2020-01-08 21:45:57 +00:00

=== Nim Socks5 library

image:https://img.shields.io/badge/status-alpha-orange.svg[badge]
image:https://img.shields.io/github/tag/FedericoCeratto/nim-socks5.svg[tags]
image:https://img.shields.io/badge/License-MPL%20v2-blue.svg[License]

Implement Socks5 client and server with and without authentication.

==== Installation

[source,bash]
----
nimble install socks5
----

==== Usage

See the package nim doc

[source,bash]
----
nim doc socks5.nim
----

There are also a server and client demo at the bottom of socks5.nim

[source,bash]
----
nim c --hints:off -d:demoserver -o:server -r socks5.nim
----

.and:
[source,bash]
----
nim c --hints:off -d:democlient -o:client -r socks5.nim
----