Merge branch 'gmbuell-master'

This commit is contained in:
Feross Aboukhadijeh 2015-05-29 20:56:59 -07:00
commit d23565155d

View File

@ -66,12 +66,12 @@ function Server (opts) {
// start a udp tracker unless the user explicitly says no // start a udp tracker unless the user explicitly says no
if (opts.udp !== false) { if (opts.udp !== false) {
self.udp4 = self.udp = dgram.createSocket('udp4') self.udp4 = self.udp = dgram.createSocket({type: 'udp4', reuseAddr: true})
self.udp4.on('message', self.onUdpRequest.bind(self)) self.udp4.on('message', self.onUdpRequest.bind(self))
self.udp4.on('error', self._onError.bind(self)) self.udp4.on('error', self._onError.bind(self))
self.udp4.on('listening', onListening) self.udp4.on('listening', onListening)
self.udp6 = dgram.createSocket('udp6') self.udp6 = dgram.createSocket({type: 'udp6', reuseAddr: true})
self.udp6.on('message', self.onUdpRequest.bind(self)) self.udp6.on('message', self.onUdpRequest.bind(self))
self.udp6.on('error', self._onError.bind(self)) self.udp6.on('error', self._onError.bind(self))
self.udp6.on('listening', onListening) self.udp6.on('listening', onListening)