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.
v2ray-core/proxy/shadowsocks/shadowsocks.go

21 lines
304 B

// R.I.P Shadowsocks
package shadowsocks
import (
v2net "github.com/v2ray/v2ray-core/common/net"
)
type Shadowsocks struct {
config *Config
port v2net.Port
}
func (this *Shadowsocks) Port() v2net.Port {
return this.port
}
func (this *Shadowsocks) Listen(port v2net.Port) error {
return nil
}