diff --git a/Other/v2ray-sn/README.md b/Other/v2ray-sn/README.md new file mode 100644 index 00000000..8615db2c --- /dev/null +++ b/Other/v2ray-sn/README.md @@ -0,0 +1,56 @@ +# Project V for SagerNet for Netch +This is not a joke. +Modified from [SagerNet/v2ray-core](https://github.com/SagerNet/v2ray-core). +#### Extends all features of SagerNet/v2ray-core + +### Changes + +- embed ShadowsocksR plugin for shadowsocks + +```json +{ + "outbounds": [ + { + "protocol": "shadowsocks", + "settings": { + ... + "plugin": "shadowsocksr", + "pluginArgs": [ + "--obfs=", + "--obfs-param=", + "--protocol=", + "--protocol-param=" + ] + } + } + ] +} +``` + +- embed simple-obfs plugin for shadowsocks + +```json +{ + "outbounds": [ + { + "protocol": "shadowsocks", + "settings": { + ... + "plugin": "obfs-local", + "pluginOpts": "" + } + } + ] +} +``` + +- Re-enable ReadV + +### License + +GPL v3 + +### Credits + +This repo relies on the following projects: +- [SagerNet/LibSagerNetCore](https://github.com/SagerNet/LibSagerNetCore)