Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

socket.io

Package Overview
Dependencies
Maintainers
0
Versions
159
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

socket.io - npm Package Compare versions

Comparing version 0.6.4 to 0.6.5

6

History.md
0.6.5 / 2011-01-09
==================
* Make sure not to trigger multiple timeouts when closing
* Important fix for polling transports.
0.6.4 / 2011-01-05

@@ -3,0 +9,0 @@ ==================

2

lib/socket.io/._index.js

@@ -1,1 +0,1 @@

Mac OS X  2��ATTR�C��� � com.macromates.caretx���R������<[k0?'3/«��
Mac OS X  2��ATTR��� � com.macromates.caretx���R������<[k0?'3/«��

@@ -69,3 +69,3 @@ var urlparse = require('url').parse

this.connection = req.connection;
this.connection.addListener('end', function(){

@@ -129,2 +129,3 @@ self._onClose();

Client.prototype._onClose = function(skipDisconnect){
if (!this._open) return this;
var self = this;

@@ -134,6 +135,2 @@ if (this._heartbeatInterval) clearTimeout(this._heartbeatInterval);

this._open = false;
if (this.connection){
this.connection.end();
this.connection = null;
}
this.request = null;

@@ -154,2 +151,6 @@ this.response = null;

if (this._disconnectTimeout) clearTimeout(this._disconnectTimeout);
if (this.connection){
this.connection.end();
this.connection = null;
}
this._writeQueue = [];

@@ -156,0 +157,0 @@ this.connected = false;

{ "name" : "socket.io"
, "description" : "The cross-browser WebSocket"
, "version" : "0.6.4"
, "version" : "0.6.5"
, "author" : "LearnBoost"

@@ -5,0 +5,0 @@ , "licenses" :

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc