1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 15:26:29 -04:00
v2fly/proxy/shadowsocks/shadowsocks.go

21 lines
304 B
Go
Raw Normal View History

2016-01-27 06:46:40 -05:00
// 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
}