https://github.com/hitoor/socks5
SOCKS5 proxy server based on libevent
https://github.com/hitoor/socks5
c cross-platform darwin libevent linux macos proxy socks5 unix windows
Last synced: 11 months ago
JSON representation
SOCKS5 proxy server based on libevent
- Host: GitHub
- URL: https://github.com/hitoor/socks5
- Owner: hitoor
- License: mit
- Created: 2025-02-18T18:53:54.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-02-26T10:29:59.000Z (11 months ago)
- Last Synced: 2025-02-26T11:33:12.792Z (11 months ago)
- Topics: c, cross-platform, darwin, libevent, linux, macos, proxy, socks5, unix, windows
- Language: C
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# socks5
A socks5 server for testing libevent, Can support linux/windows/macos, but only tested on macos
build
```shell
git clone https://github.com/hitoor/socks5.git
cd socks5
git submodule update --init --recursive
mkdir build
cd build
# Debug mode
# cmake -DCMAKE_BUILD_TYPE:STRING=Debug ..
cmake ..
cmake --build . --target socks5
```
usage
```shell
./socks5 0.0.0.0:1080 admin passwd 8.8.8.8
```