Browse Source

Fix a potential issue mentioned in #81

v2ray 9 years ago
parent
commit
131e6bf239
1 changed files with 3 additions and 1 deletions
  1. 3 1
      proxy/shadowsocks/shadowsocks.go

+ 3 - 1
proxy/shadowsocks/shadowsocks.go

@@ -63,7 +63,6 @@ func (this *Shadowsocks) Listen(port v2net.Port) error {
 			return proxy.ErrorAlreadyListening
 			return proxy.ErrorAlreadyListening
 		}
 		}
 	}
 	}
-	this.accepting = true
 
 
 	tcpHub, err := hub.ListenTCP(port, this.handleConnection)
 	tcpHub, err := hub.ListenTCP(port, this.handleConnection)
 	if err != nil {
 	if err != nil {
@@ -82,6 +81,9 @@ func (this *Shadowsocks) Listen(port v2net.Port) error {
 		this.udpHub = udpHub
 		this.udpHub = udpHub
 	}
 	}
 
 
+	this.port = port
+	this.accepting = true
+
 	return nil
 	return nil
 }
 }