mirror of https://github.com/v2ray/v2ray-core
cleanup
parent
5f4acaa9ea
commit
114f390a69
|
@ -14,10 +14,6 @@ import (
|
||||||
"v2ray.com/core/transport/internet/tls"
|
"v2ray.com/core/transport/internet/tls"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
|
||||||
ErrClosedListener = newError("Listener is closed.")
|
|
||||||
)
|
|
||||||
|
|
||||||
type TCPListener struct {
|
type TCPListener struct {
|
||||||
ctx context.Context
|
ctx context.Context
|
||||||
listener *net.TCPListener
|
listener *net.TCPListener
|
||||||
|
@ -107,8 +103,7 @@ func (v *TCPListener) Addr() net.Addr {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (v *TCPListener) Close() error {
|
func (v *TCPListener) Close() error {
|
||||||
v.listener.Close()
|
return v.listener.Close()
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
Loading…
Reference in New Issue