mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
462 B
16 lines
462 B
// Package shadowsocks provides compatible functionality to Shadowsocks. |
|
// |
|
// Shadowsocks client and server are implemented as outbound and inbound respectively in V2Ray's term. |
|
// |
|
// Shadowsocks OTA is fully supported. By default both client and server enable OTA, but it can be optionally disabled. |
|
// |
|
// Supperted Ciphers: |
|
// * AES-256-CFB |
|
// * AES-128-CFB |
|
// * Chacha20 |
|
// * Chacha20-IEFT |
|
// |
|
// R.I.P Shadowsocks |
|
package shadowsocks |
|
|
|
//go:generate errorgen
|
|
|