Socket
Socket
Sign inDemoInstall

engine.io

Package Overview
Dependencies
Maintainers
1
Versions
151
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

engine.io - npm Package Compare versions

Comparing version 0.3.2 to 0.3.3

6

History.md
0.3.3 / 2012-10-10
==================
* socket: fixed check interval clearing [joewalnes]
* transports: improved instrumentation
0.3.2 / 2012-10-08

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

2

lib/socket.js

@@ -152,3 +152,3 @@ /**

debug('client did not complete upgrade - closing transport');
clearInteval(checkInterval);
clearInterval(checkInterval);
if ('open' == transport.readyState) {

@@ -155,0 +155,0 @@ transport.close();

@@ -172,3 +172,3 @@

Polling.prototype.onData = function (data) {
debug('data', data);
debug('received "%s"', data);
var packets = parser.decodePayload(data);

@@ -211,3 +211,3 @@ for (var i = 0, l = packets.length; i < l; i++) {

Polling.prototype.write = function (data) {
debug('writing', data);
debug('writing "%s"', data);
this.doWrite(data);

@@ -214,0 +214,0 @@ this.req.cleanup();

@@ -60,3 +60,3 @@

* Processes the incoming data.
*
*
* @param {String} encoded packet

@@ -67,3 +67,3 @@ * @api private

WebSocket.prototype.onData = function (data) {
debug('data', data);
debug('received "%s"', data);
Transport.prototype.onData.call(this, data);

@@ -82,3 +82,3 @@ };

var data = parser.encodePacket(packets[i]);
debug('writing', data);
debug('writing "%s"', data);
this.writable = false;

@@ -85,0 +85,0 @@ var self = this;

{
"name": "engine.io"
, "version": "0.3.2"
, "version": "0.3.3"
, "description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server"

@@ -13,3 +13,3 @@ , "main": "./lib/engine.io"

"debug": "0.6.0"
, "engine.io-client": "0.3.2"
, "engine.io-client": "0.3.3"
, "ws": "~0.4.21"

@@ -16,0 +16,0 @@ , "base64id": "0.1.0"

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