mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 10:08:15 -05:00
cleanup
This commit is contained in:
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
Block a user