Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/federicoceratto/nim-socks5
- Owner: FedericoCeratto
- License: mpl-2.0
- Created: 2019-11-06T20:44:14.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-29T19:42:34.000Z (almost 3 years ago)
- Last Synced: 2023-03-22T12:49:34.335Z (over 1 year ago)
- Topics: networking, nim, nim-lang, socks, socks5
- Language: Nim
- Size: 9.77 KB
- Stars: 26
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
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
----