From 5152cfea14ad60f2b0986570df59a29a78919dae Mon Sep 17 00:00:00 2001 From: brianc Date: Sun, 10 Oct 2010 23:05:21 -0500 Subject: [PATCH] send correct termination code --- lib/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/client.js b/lib/client.js index e82f1d8c..1b0da351 100644 --- a/lib/client.js +++ b/lib/client.js @@ -58,7 +58,7 @@ p.connect = function() { }; p.disconnect = function() { - var terminationBuffer = new Buffer([58,0,0,0,4]); + var terminationBuffer = new Buffer([88,0,0,0,4]); this.stream.write(terminationBuffer); };