mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2024-12-13 19:06:27 +00:00
Merge pull request #51 from feross/public-onUdpRequest
server: make onUdpRequest() part of public API
This commit is contained in:
commit
655d2b5be6
@ -62,7 +62,7 @@ function Server (opts) {
|
||||
// default to starting a udp server unless the user explicitly says no
|
||||
if (opts.udp !== false) {
|
||||
self._udpSocket = dgram.createSocket('udp4')
|
||||
self._udpSocket.on('message', self._onUdpRequest.bind(self))
|
||||
self._udpSocket.on('message', self.onUdpRequest.bind(self))
|
||||
self._udpSocket.on('error', self._onError.bind(self))
|
||||
self._udpSocket.on('listening', onListening)
|
||||
}
|
||||
@ -158,7 +158,7 @@ Server.prototype.onHttpRequest = function (req, res) {
|
||||
})
|
||||
}
|
||||
|
||||
Server.prototype._onUdpRequest = function (msg, rinfo) {
|
||||
Server.prototype.onUdpRequest = function (msg, rinfo) {
|
||||
var self = this
|
||||
|
||||
var params
|
||||
|
Loading…
Reference in New Issue
Block a user