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