We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7bd2b1 commit 3d28229Copy full SHA for 3d28229
lib/socket.ts
@@ -28,6 +28,12 @@ export class Socket extends EventEmitter {
28
private pingTimeoutTimer;
29
private pingIntervalTimer;
30
31
+ /**
32
+ * This is the session identifier that the client will use in the subsequent HTTP requests. It must not be shared with
33
+ * others parties, as it might lead to session hijacking.
34
+ *
35
+ * @private
36
+ */
37
private readonly id: string;
38
39
get readyState() {
0 commit comments