Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zenhack/go.socks5
Go Library for implementing SOCKS 5 servers
https://github.com/zenhack/go.socks5
Last synced: about 1 month ago
JSON representation
Go Library for implementing SOCKS 5 servers
- Host: GitHub
- URL: https://github.com/zenhack/go.socks5
- Owner: zenhack
- License: isc
- Created: 2015-06-20T05:59:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-22T00:26:00.000Z (over 9 years ago)
- Last Synced: 2024-10-22T06:59:22.343Z (3 months ago)
- Language: Go
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
A Go library for writing SOCKS 5 servers. (RFC 1928)
So far, only the `CONNECT` request is supported, and only the "No
authentication required" method is supported for authentication.The `Server` interface is defined to allow different backends to be
used for establishing connections. The message marshalling is also
exposed, in the hopes that it may be useful.There is also an example server that just makes connections from the
local machine when servicing requests in `cmd/socks5d`.This package must be imported by the canonical path
`zenhack.net/go/socks5`; using the Github URL will not work.# LICENSE
Free/Open Source under the MIT license (see `COPYING`)