This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,23 @@ | ||
V2socks | ||
======= | ||
|
||
An opinionated lightweight socks5 server and vmess (v2ray) client implemented in Rust. | ||
An opinionated lightweight socks5 server and vmess (v2ray) client implemented in Rust. | ||
|
||
#### Deprecation | ||
|
||
This software is no longer maintained. (It still works as of Sept. 2024) | ||
|
||
You might be interested in another of my project [sopipe](https://github.com/ylxdzsw/sopipe), which also implements the | ||
functionalities in this project, plus much more! | ||
|
||
Example of running a socks5 server and a vmess client using `sopipe`: | ||
|
||
```sh | ||
$ sopipe 'tcp(1080) => socks5_server => vmess_client("49aa7c07-2cd4-4585-b645-3392fde45b90") => tcp("example.com:3399")' | ||
``` | ||
|
||
or through HTTP2 over TLS: | ||
|
||
```sh | ||
$ sopipe 'tcp(1080) => socks5_server => vmess_client("49aa7c07-2cd4-4585-b645-3392fde45b90") => http2_client("example.com", "/")' | ||
``` |