1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-30 05:56:54 -05:00

fix race condition in shadowsocks

This commit is contained in:
v2ray 2016-02-03 22:42:58 +01:00
parent 265c9e4abb
commit 2d1ded9b9e

View File

@ -74,13 +74,13 @@ func (this *Shadowsocks) Listen(port v2net.Port) error {
this.tcpHub = tcpHub
if this.config.UDP {
this.udpServer = hub.NewUDPServer(this.packetDispatcher)
udpHub, err := hub.ListenUDP(port, this.handlerUDPPayload)
if err != nil {
log.Error("Shadowsocks: Failed to listen UDP on port ", port, ": ", err)
return err
}
this.udpHub = udpHub
this.udpServer = hub.NewUDPServer(this.packetDispatcher)
}
return nil