Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been having some problems with the below code that I've pieced together. All the events work as advertised however, when a client drops off-line without first disconnecting the close event doesn't get call right away. If you give it a minute or so it will eventually get called. Also, I find if I continue to send data to the client it picks up a close event faster but never right away. Lastly, if the client gracefully disconnects, the end event is called just fine.

I understand this is related to the other listen events like upgrade and ondata.

I should also state that the client is an embedded device.

client http request:
GET /demo HTTP/1.1\r\n
Host: example.com\r\n
Upgrade: Websocket\r\n
Connection: Upgrade\r\n\r\n


//nodejs server (I'm using version 6.6)
var http = require('http');
var net = require('net');
var sys = require("util");

var srv = http.createServer(function (req, res){
});

srv.on('upgrade', function(req, socket, upgradeHead) {

  socket.write('HTTP/1.1 101 Web Socket Protocol Handshake\r\n' +
               'Upgrade: WebSocket\r\n' +
               'Connection: Upgrade\r\n' +
               '\r\n\r\n');

  sys.puts('upgraded');

  socket.ondata = function(data, start, end) {
    socket.write(data.toString('utf8', start, end), 'utf8'); // echo back
  }; 

  socket.addListener('end', function () {    
    sys.puts('end');  //works fine
  });

  socket.addListener('close', function () {
    sys.puts('close');  //eventually gets here
  });

});
srv.listen(3400);

Can anyone suggest a solution to pickup an immediate close event? I am trying to keep this simple without use of modules. Thanks in advance.

share|improve this question
3  
There's a reason why people write module for these things. You'll be in for quite a bit of work if you want to make a cross-draft conforming websocket implementation without the use of any prior written code. – einaros Feb 14 '12 at 10:28
@einaros +1. socket.io already deals with these issues, and many others: stackoverflow.com/questions/7192747/… – Rohan Singh Feb 14 '12 at 11:28
@RohanSingh, I should know - I wrote the websocket code for socket.io. – einaros Feb 14 '12 at 15:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.