bittorrent-tracker/lib/common.js
2015-03-24 01:52:35 -07:00

22 lines
492 B
JavaScript

/**
* Functions/constants needed by both the client and server.
*/
var extend = require('xtend/mutable')
exports.DEFAULT_ANNOUNCE_INTERVAL = 30 * 60 * 1000 // 30 minutes
exports.DEFAULT_ANNOUNCE_PEERS = 50
exports.MAX_ANNOUNCE_PEERS = 82
exports.binaryToHex = function (str) {
return new Buffer(str, 'binary').toString('hex')
}
exports.hexToBinary = function (str) {
return new Buffer(str, 'hex').toString('binary')
}
var config = require('./common-node')
extend(exports, config)