Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/federicoceratto/nim-socks5

Nim Socks5 library
https://github.com/federicoceratto/nim-socks5

networking nim nim-lang socks socks5

Last synced: 6 days ago
JSON representation

Nim Socks5 library

Awesome Lists containing this project

README

        

=== 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
----