Files
socket.io/test
Damien Arrachequesne dd2a8fce00 fix: ensure connections are properly multiplexed
When passing the same `options` argument for two distinct Socket
instances, a new Manager was created:

```js
const opts = {};

const socket1 = io("/foo", opts);
const socket2 = io("/bar", opts);

console.log(socket1.io === socket2.io); // false
```

This bug was introduced by [1].

Note: the `options` argument is modified at the `socket.io-client`
level (path, query) and at the `engine.io-client` level (host, port),
which may not be optimal.

[1]: 7a0c2b504f

Related: https://github.com/socketio/socket.io/issues/3898
2021-05-06 14:22:54 +02:00
..
2021-03-10 12:16:12 +01:00
2016-02-28 02:36:06 +08:00
2021-03-10 12:16:12 +01:00
2021-03-10 12:16:12 +01:00
2021-02-03 22:31:01 +01:00