use callback if necessary

Este commit está contenido en:
AJ ONeal 2016-10-11 13:57:21 -06:00
padre 64cfee686e
commit 0ca2c91731
Se han modificado 1 ficheros con 4 adiciones y 0 borrados

Ver fichero

@ -135,6 +135,10 @@ stunnel.connect({
httpsServer.emit('connection', myDuplex);
if (cb) {
cb();
}
return myDuplex;
}
});