1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00
v2fly/proxy/shadowsocks/shadowsocks.go
2016-01-27 12:46:40 +01:00

21 lines
304 B
Go

// 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
}