5

如果客户端使用 Web 套接字关闭互联网,我想检测客户端连接。我的代码是:

 //Include util library
    var util = require('util');
    // Include underscore library
    var _ = require('underscore')._;
    //For websocket
var webSocketServer = new (require('ws')).Server({port: (process.env.PORT || 5000)}),
webSockets = {} // userID: webSocket

// CONNECT /:userID
// wscat -c ws://localhost:5000/1
webSocketServer.on('connection', function (webSocket) 
{
  var userID = webSocket.upgradeReq.url.substr(1);
  //console.log('User_id is ',userID);
  webSockets[userID] = webSocket
                   util.log('User_id: [' + userID + '] enter in connected users list of [ ' + Object.getOwnPropertyNames(webSockets)+' ]')
                   // Call function which check id exist in letswalkee DB table
                   check_userid(userID);


                   // Send msg like: [fromUserID, text]    [1, "Hello, World!"]
webSocket.on('message', function(message) {
util.log('Received from [' + userID + ']: ' + message)
var messageArray = JSON.parse(message)
                                    var toUserWebSocket = webSockets[messageArray[0]]
                                    if (toUserWebSocket) {
                                    util.log('Sent to [' + messageArray[0] + ']: ' + JSON.stringify(messageArray))
                                    messageArray[0] = userID
                                    toUserWebSocket.send(JSON.stringify(messageArray))
                                    }
                                    })

                   webSocket.on('close', function () 
                   {
                      delete webSockets[userID]
                      util.log('User_id Deleted from connected users: [ ' + userID+' ]');

                    })
webSocket.on('disconnect',function()
  {
   console.log('hello i am disconnected');  
  });
})

我使用了该代码(webSocket.on('disconnect',function())但没有奏效。

4

2 回答 2

2

WebSocket 是基于 TCP 的,TCP 使用 FIN 包来关闭连接。在 Internet 连接突然丢失的情况下,WebSocket 服务器和电话都不知道已经死掉的 TCP 连接,因为没有发送 FIN 数据包。

为了解决这个问题,TCP 有一种称为keepalive.

我为解决这个问题所做的是调整keepaliveLinux 内核中的 TCP 设置,然后调用ws._socket.setKeepAlive(true).

参考: https ://github.com/websockets/ws/issues/353

于 2015-11-03T11:02:25.780 回答
1

对于基于 TCP 的协议(例如 Websockets),通常所做的是在应用层来回发送心跳/ping 数据包,以便每一方都可以轻松/快速地确定连接是否由于某种原因而消失。

于 2014-08-09T16:18:48.977 回答