Add brief docs around server callback function sig

This commit is contained in:
Ben Burry 2014-09-16 21:16:11 +00:00
Родитель 987116d22c
Коммит 7aabdcfc7a
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -46,6 +46,10 @@ function loadBackend(config, name) {
}
// Load and init the server from the servers/ directory.
// The callback mimics the dgram 'message' event parameters (msg, rinfo)
// msg: the message received by the server. may contain more than one metric
// rinfo: contains remote address information and message length
// (attributes are .address, .port, .family, .size - you're welcome)
function startServer(config, name, callback) {
var servermod = require(name);