null buffers

This commit is contained in:
AJ ONeal 2016-09-30 02:15:38 -04:00
parent 11546b298a
commit 442283f42c
1 changed files with 4 additions and 4 deletions

View File

@ -89,7 +89,7 @@ return;
} }
function endWithError() { function endWithError() {
wstunneler.send(pack(opts, Buffer.from('|__ERROR__|'), 'error'), { binary: true }); wstunneler.send(pack(opts, null, 'error'), { binary: true });
} }
if (localclients[cid]) { if (localclients[cid]) {
@ -113,7 +113,7 @@ return;
if (!servername) { if (!servername) {
console.warn("|__ERROR__| no servername found for '" + cid + "'"); console.warn("|__ERROR__| no servername found for '" + cid + "'");
console.warn(opts.data.toString()); console.warn(opts.data.toString());
wstunneler.send(pack(opts, Buffer.from('|__ERROR__|'), 'error'), { binary: true }); wstunneler.send(pack(opts, null, 'error'), { binary: true });
return; return;
} }
@ -132,12 +132,12 @@ return;
console.error("[error] local '" + opts.service + "' '" + cid + "'"); console.error("[error] local '" + opts.service + "' '" + cid + "'");
console.error(err); console.error(err);
delete localclients[cid]; delete localclients[cid];
wstunneler.send(pack(opts, Buffer.from('|__ERROR__|'), 'error'), { binary: true }); wstunneler.send(pack(opts, null, 'error'), { binary: true });
}); });
lclient.on('end', function () { lclient.on('end', function () {
console.log("[end] local '" + opts.service + "' '" + cid + "'"); console.log("[end] local '" + opts.service + "' '" + cid + "'");
delete localclients[cid]; delete localclients[cid];
wstunneler.send(pack(opts, Buffer.from('|__END__|'), 'end'), { binary: true }); wstunneler.send(pack(opts, null, 'end'), { binary: true });
}); });
} }
, onend: function (opts) { , onend: function (opts) {