mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-03 07:56:42 -05:00
cleanup
This commit is contained in:
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
Block a user