mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
21 lines
304 B
Go
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
|
||
|
}
|