Skip to content
This repository has been archived by the owner on Aug 17, 2024. It is now read-only.

Latest commit

 

History

History
36 lines (26 loc) · 690 Bytes

README.adoc

File metadata and controls

36 lines (26 loc) · 690 Bytes

Nim Socks5 library

badge tags License

Implement Socks5 client and server with and without authentication.

Installation

nimble install socks5

Usage

See the package nim doc

nim doc socks5.nim

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

nim c --hints:off -d:demoserver -o:server -r socks5.nim
and:
nim c --hints:off -d:democlient -o:client -r socks5.nim