Skip to content

Commit 7d39f19

Browse files
committedNov 6, 2020
[minor] Pass the request object to server.handleUpgrade() callback
Fixes #1813
1 parent 572c81f commit 7d39f19

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed
 

‎doc/ws.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ emitted independently.
154154

155155
### Event: 'connection'
156156

157-
- `socket` {WebSocket}
157+
- `websocket` {WebSocket}
158158
- `request` {http.IncomingMessage}
159159

160160
Emitted when the handshake is complete. `request` is the http GET request sent
@@ -211,8 +211,10 @@ when the HTTP server is passed via the `server` option, this method is called
211211
automatically. When operating in "noServer" mode, this method must be called
212212
manually.
213213

214-
If the upgrade is successful, the `callback` is called with a `WebSocket` object
215-
as parameter.
214+
If the upgrade is successful, the `callback` is called with two arguments:
215+
216+
- `websocket` {WebSocket} A `WebSocket` object.
217+
- `request` {http.IncomingMessage} The client HTTP GET request.
216218

217219
### server.shouldHandle(request)
218220

‎lib/websocket-server.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ class WebSocketServer extends EventEmitter {
8383
}
8484

8585
if (this._server) {
86+
const emitConnection = this.emit.bind(this, 'connection');
87+
8688
this._removeListeners = addListeners(this._server, {
8789
listening: this.emit.bind(this, 'listening'),
8890
error: this.emit.bind(this, 'error'),
8991
upgrade: (req, socket, head) => {
90-
this.handleUpgrade(req, socket, head, (ws) => {
91-
this.emit('connection', ws, req);
92-
});
92+
this.handleUpgrade(req, socket, head, emitConnection);
9393
}
9494
});
9595
}
@@ -327,7 +327,7 @@ class WebSocketServer extends EventEmitter {
327327
ws.on('close', () => this.clients.delete(ws));
328328
}
329329

330-
cb(ws);
330+
cb(ws, req);
331331
}
332332
}
333333

0 commit comments

Comments
 (0)
Please sign in to comment.