add type
This commit is contained in:
parent
b24d12f84c
commit
1bdfad6691
|
@ -85,7 +85,7 @@ wstunneler.on('open', function () {
|
||||||
}
|
}
|
||||||
|
|
||||||
function endWithError() {
|
function endWithError() {
|
||||||
wstunneler.send(pack(opts, Buffer.from('|__ERROR__|')), { binary: true });
|
wstunneler.send(pack(opts, Buffer.from('|__ERROR__|'), 'error'), { binary: true });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (localclients[cid]) {
|
if (localclients[cid]) {
|
||||||
|
@ -109,7 +109,7 @@ wstunneler.on('open', function () {
|
||||||
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__|')), { binary: true });
|
wstunneler.send(pack(opts, Buffer.from('|__ERROR__|'), 'error'), { binary: true });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -126,12 +126,12 @@ wstunneler.on('open', function () {
|
||||||
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__|')), { binary: true });
|
wstunneler.send(pack(opts, Buffer.from('|__ERROR__|'), '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__|')), { binary: true });
|
wstunneler.send(pack(opts, Buffer.from('|__END__|'), 'end'), { binary: true });
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log("[=>] first packet from tunneler to '" + cid + "' as '" + opts.service + "'", opts.data.byteLength);
|
console.log("[=>] first packet from tunneler to '" + cid + "' as '" + opts.service + "'", opts.data.byteLength);
|
||||||
|
|
Loading…
Reference in New Issue