http server: error on invalid peer_id

This commit is contained in:
Feross Aboukhadijeh 2014-07-12 18:40:52 -07:00
parent aceca28b78
commit 65c44e81f7

View File

@ -133,6 +133,8 @@ Server.prototype._onHttpRequest = function (req, res) {
if (!infoHash) return error('invalid info_hash') if (!infoHash) return error('invalid info_hash')
if (infoHash.length !== 20) return error('invalid info_hash') if (infoHash.length !== 20) return error('invalid info_hash')
if (!peerId) return error('invalid peer_id')
if (peerId.length !== 20) return error('invalid peer_id')
if (!port) return error('invalid port') if (!port) return error('invalid port')
if (!peerId) return error('invalid peer_id') if (!peerId) return error('invalid peer_id')