forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathws_v7.x.x.js
344 lines (304 loc) · 8.73 KB
/
ws_v7.x.x.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict
* @format
* @oncall react_native
*/
declare type ws$PerMessageDeflateOptions = {
serverNoContextTakeover?: boolean,
clientNoContextTakeover?: boolean,
serverMaxWindowBits?: boolean | number,
clientMaxWindowBits?: boolean | number,
zlibDeflateOptions?: zlib$options,
zlibInflateOptions?: zlib$options,
threshold?: number,
concurrencyLimit?: number,
isServer?: boolean,
maxPayload?: number,
};
/* $FlowFixMe[incompatible-extend] - Found with Flow v0.143.1 upgrade
* "on" definition failing with string is incompatible with string literal */
declare class ws$WebSocketServer extends events$EventEmitter {
/**
* Create a `WebSocketServer` instance.
*/
constructor(
options: {
backlog?: number,
clientTracking?: boolean,
handleProtocols?: () => mixed,
host?: string,
maxPayload?: number,
noServer?: boolean,
path?: string,
perMessageDeflate?: boolean | ws$PerMessageDeflateOptions,
port?: number,
server?: http$Server | https$Server,
verifyClient?: () => mixed,
},
callback?: () => mixed,
): this;
/**
* Emitted when the server closes.
*/
on(event: 'close', () => mixed): this;
/**
* Emitted when the handshake is complete.
*/
on(
event: 'connection',
(socket: ws$WebSocket, request: http$IncomingMessage<>) => mixed,
): this;
/**
* Emitted when an error occurs on the underlying server.
*/
on(event: 'error', (error: Error) => mixed): this;
/**
* Emitted before the response headers are written to the socket as part of
* the handshake.
*/
on(
event: 'headers',
(headers: Array<string>, request: http$IncomingMessage<>) => mixed,
): this;
/**
* Emitted when the underlying server has been bound.
*/
on(event: 'listening', () => mixed): this;
/**
* Returns the bound address, the address family name, and port of the server
* as reported by the operating system if listening on an IP socket.
* If the server is listening on a pipe or UNIX domain socket, the name is
* returned as a string.
*/
address(): null | string | {port?: number, family?: string, address?: string};
/**
* A set that stores all connected clients. Please note that this property is
* only added when the `clientTracking` is truthy.
*/
clients: Set<ws$WebSocket>;
/**
* Close the server.
*/
close(callback?: () => mixed): void;
/**
* Handle a HTTP Upgrade request.
*/
handleUpgrade(
request: http$IncomingMessage<>,
socket: net$Socket,
head: Buffer,
callback: (?ws$WebSocket) => mixed,
): void;
/**
* See if a given request should be handled by this server instance.
*/
shouldHandle(request: http$IncomingMessage<>): boolean;
}
declare type ws$WebSocketOptions = {
followRedirects?: boolean,
handshakeTimeout?: number,
maxRedirects?: number,
perMessageDeflate?: boolean | ws$PerMessageDeflateOptions,
protocolVersion?: number,
origin?: string,
maxPayload?: number,
...requestOptions,
agent?: boolean | http$Agent<> | http$Agent<tls$TLSSocket>,
createConnection?:
| ((options: net$connectOptions, callback?: () => mixed) => net$Socket)
| ((options: tls$connectOptions, callback?: () => mixed) => tls$TLSSocket),
rejectUnauthorized?: boolean,
};
declare type ws$CloseListener = (code: number, reason: string) => mixed;
declare type ws$ErrorListener = (error: Error) => mixed;
declare type ws$MessageListener = (
data: string | Buffer | ArrayBuffer | Array<Buffer>,
) => mixed;
declare type ws$OpenListener = () => mixed;
declare type ws$PingListener = (Buffer) => mixed;
declare type ws$PongListener = (Buffer) => mixed;
declare type ws$UnexpectedResponseListener = (
request: http$ClientRequest<>,
response: http$IncomingMessage<>,
) => mixed;
declare type ws$UpgradeListener = (response: http$IncomingMessage<>) => mixed;
/* $FlowFixMe[incompatible-extend] - Found with Flow v0.143.1 upgrade
* "on" definition failing with string is incompatible with string literal */
declare class ws$WebSocket extends events$EventEmitter {
static Server: typeof ws$WebSocketServer;
static createWebSocketStream: (
WebSocket: ws$WebSocket,
options?: duplexStreamOptions,
) => stream$Duplex;
static CONNECTING: number;
static OPEN: number;
static CLOSING: number;
static CLOSED: number;
/**
* Create a `WebSocket` instance.
*/
constructor(
address: string | URL,
protocols?: string | Array<string>,
options?: ws$WebSocketOptions,
): this;
constructor(address: string | URL, options: ws$WebSocketOptions): this;
/*
* Emitted when the connection is closed.
*/
on('close', ws$CloseListener): this;
/*
* Emitted when an error occurs.
*/
on('error', ws$ErrorListener): this;
/*
* Emitted when a message is received from the server.
*/
on('message', ws$MessageListener): this;
/*
* Emitted when the connection is established.
*/
on('open', ws$OpenListener): this;
/*
* Emitted when a ping is received from the server.
*/
on('ping', ws$PingListener): this;
/*
* Emitted when a pong is received from the server.
*/
on('pong', ws$PongListener): this;
/*
* Emitted when the server response is not the expected one,
* for example a 401 response.
*/
on('unexpected-response', ws$UnexpectedResponseListener): this;
/*
* Emitted when response headers are received from the server as part of the
* handshake.
*/
on('upgrade', ws$UpgradeListener): this;
/**
* Register an event listener emulating the `EventTarget` interface.
*/
addEventListener(
type: 'close',
listener: ws$CloseListener,
options?: {once?: boolean},
): this;
addEventListener(
type: 'error',
listener: ws$ErrorListener,
options?: {once?: boolean},
): this;
addEventListener(
type: 'message',
listener: ws$MessageListener,
options?: {once?: boolean},
): this;
addEventListener(
type: 'open',
listener: ws$OpenListener,
options?: {once?: boolean},
): this;
addEventListener(
type: 'ping',
listener: ws$PingListener,
options?: {once?: boolean},
): this;
addEventListener(
type: 'pong',
listener: ws$PongListener,
options?: {once?: boolean},
): this;
addEventListener(
type: 'unexpected-response',
ws$UnexpectedResponseListener,
options?: {once?: boolean},
): this;
addEventListener(
type: 'upgrade',
listener: ws$UpgradeListener,
options?: {once?: boolean},
): this;
/**
* A string indicating the type of binary data being transmitted by the
* connection.
*/
binaryType: string;
/**
* The number of bytes of data that have been queued using calls to send()
* but not yet transmitted to the network.
*/
bufferedAmount: number;
/**
* Initiate a closing handshake.
*/
close(code?: number, reason?: string): void;
/**
* The negotiated extensions.
*/
extensions: string;
/**
* Send a ping.
*/
ping(data?: any, mask?: boolean, callback?: () => mixed): void;
ping(data: any, callback: () => mixed): void;
ping(callback: () => mixed): void;
/**
* Send a pong.
*/
pong(data?: any, mask?: boolean, callback?: () => mixed): void;
pong(data: any, callback: () => mixed): void;
pong(callback: () => mixed): void;
/**
* The subprotocol selected by the server.
*/
protocol: string;
/**
* The current state of the connection.
*/
readyState: number;
/**
* Removes an event listener emulating the `EventTarget` interface.
*/
removeEventListener(type: 'close', listener: ws$CloseListener): this;
removeEventListener(type: 'error', listener: ws$ErrorListener): this;
removeEventListener(type: 'message', listener: ws$MessageListener): this;
removeEventListener(type: 'open', listener: ws$OpenListener): this;
removeEventListener(type: 'ping', listener: ws$PingListener): this;
removeEventListener(type: 'pong', listener: ws$PongListener): this;
removeEventListener(
type: 'unexpected-response',
ws$UnexpectedResponseListener,
): this;
removeEventListener(type: 'upgrade', listener: ws$UpgradeListener): this;
/**
* Send a data message.
*/
send(
data?: any,
options?: {
compress?: boolean,
binary?: boolean,
mask?: boolean,
fin?: boolean,
},
callback?: () => mixed,
): void;
send(data: any, callback: () => mixed): void;
/**
* Forcibly close the connection.
*/
terminate(): void;
}
declare module 'ws' {
declare module.exports: typeof ws$WebSocket;
}
declare module 'ws/lib/websocket-server' {
declare module.exports: typeof ws$WebSocketServer;
}