Home
last modified time | relevance | path

Searched refs:listening (Results 1 – 25 of 150) sorted by relevance

123456

/third_party/node/test/internet/
Dtest-dgram-multicast-multi-process.js42 let listening, sendSocket, done, timer, dead; variable
73 if (msg.listening) {
74 listening += 1;
76 if (listening === listeners) {
133 listening = 0;
231 process.send({ listening: true }); property
Dtest-dgram-multicast-ssmv6-multi-process.js21 let listening, sendSocket, done, timer, dead; variable
67 if (msg.listening) {
68 listening += 1;
70 if (listening === listeners) {
127 listening = 0;
227 process.send({ listening: true }); property
Dtest-dgram-multicast-ssm-multi-process.js21 let listening, sendSocket, done, timer, dead; variable
67 if (msg.listening) {
68 listening += 1;
70 if (listening === listeners) {
127 listening = 0;
227 process.send({ listening: true }); property
Dtest-dgram-broadcast-multi-process.js61 let listening = 0; variable
114 if (msg.listening) {
115 listening += 1;
117 if (listening === listeners) {
250 listenSocket.on('listening', () => { process.send({ listening: true }); }); property
Dtest-dgram-multicast-set-interface-lo.js81 let listening = 0; variable
148 if (msg.listening) {
149 listening += 1;
151 if (listening === listeners) {
286 process.send({ listening: true }); property
/third_party/node/test/parallel/
Dtest-cluster-basic.js61 listening: false, property
67 listening: false, property
75 listening: false, property
80 listening: false, property
86 listening: false, property
Dtest-net-listening.js8 assert.strictEqual(server.listening, false);
11 assert.strictEqual(server.listening, true);
14 assert.strictEqual(server.listening, false);
Dtest-http-listening.js8 assert.strictEqual(server.listening, false);
11 assert.strictEqual(server.listening, true);
14 assert.strictEqual(server.listening, false);
Dtest-https-strict.js88 server1.listen(0, listening());
89 server2.listen(0, listening());
90 server3.listen(0, listening());
110 function listening() { function
Dtest-cluster-dgram-1.js41 let listening = 0;
49 if (++listening < NUM_WORKERS)
Dtest-cluster-dgram-bind-fd.js32 let listening = 0;
40 if (++listening < NUM_WORKERS)
Dtest-debugger-random-port-with-inspect-port.js21 /< Debugger listening on /,
Dtest-debugger-random-port.js23 /< Debugger listening on /,
/third_party/node/doc/api/
Ddgram.md27 server.on('listening', () => {
29 console.log(`server listening ${address.address}:${address.port}`);
33 // Prints: server listening 0.0.0.0:41234
49 server.on('listening', () => {
51 console.log(`server listening ${address.address}:${address.port}`);
55 // Prints: server listening 0.0.0.0:41234
100 ### Event: `'listening'`
106 The `'listening'` event is emitted once the `dgram.Socket` is addressable and
109 Until the `dgram.Socket` is listening, the underlying system resources do not
157 port, listening on all interfaces.
[all …]
Ddebugger.md18 < Debugger listening on ws://127.0.0.1:9229/621111f9-ffcb-4e82-b718-48a145fa5db8
47 < Debugger listening on ws://127.0.0.1:9229/f1ed133e-7876-495b-83ae-c32c6fc319c2
133 < Debugger listening on ws://127.0.0.1:9229/48a5b28a-550c-471b-b5e1-d13dd7165df9
160 < Debugger listening on ws://127.0.0.1:9229/ce24daa8-3816-44d4-b8ab-8273c8a66d35
242 Debugger listening on ws://127.0.0.1:9229/dc9010dd-f8b8-4ac5-a510-c1a114ec7d29
Dcluster.md123 handle passed to the worker, rather than listening to the worker's
231 ### Event: `'listening'`
239 Similar to the `cluster.on('listening')` event, but specific to this worker.
242 cluster.fork().on('listening', (address) => {
243 // Worker is listening
248 cluster.fork().on('listening', (address) => {
249 // Worker is listening
397 but connections may be accepted by any other listening worker. Existing
419 worker.on('listening', (address) => {
720 cluster.on('listening', (worker, address) => {
[all …]
Dnet.md276 ### Event: `'listening'`
318 as reported by the operating system if listening on an IP socket
322 For a server listening on a pipe or Unix domain socket, the name is returned
339 `server.address()` returns `null` before the `'listening'` event has been
385 Start a server listening for connections. A `net.Server` can be a TCP or
397 This function is asynchronous. When the server starts listening, the
398 [`'listening'`][] event will be emitted. The last parameter `callback`
399 will be added as a listener for the [`'listening'`][] event.
413 One of the most common errors raised when listening is `EADDRINUSE`.
414 This happens when another server is already listening on the requested
[all …]
/third_party/libcoap/man/
Dcoap-rd.txt.in44 The 'port' on the given address will be listening for incoming connections.
61 Use this interface for listening for the multicast group. This can be
137 Quite the same, except listening port is '13011' (and not the default port
144 The listening address is set to '2001:db8:81a8:0:6ef0:dead:feed:beef' and the
151 Set listening address to '2001:db8:81a8:0:6ef0:dead:feed:beef' and join the
Dcoap-server.txt.in67 The 'port' on the given address will be listening for incoming connections.
101 Use this interface for listening for the multicast group. This can be
262 The same, except the UDP/TCP listening port is '13011' and the DTLS/TLS
263 listening port is '13012' (and not the default ports '5683' and '5684').
269 The listening address is set to '2001:db8:81a8:0:6ef0:dead:feed:beef' and the
276 Set listening address to '2001:db8:81a8:0:6ef0:dead:feed:beef' and join the
/third_party/node/deps/undici/src/docs/api/
DDispatcher.md37 await once(server, 'listening')
105 await once(server, 'listening')
157 await once(server, 'listening')
228 await once(server, 'listening')
275 await once(server, 'listening')
330 await once(server, 'listening')
405 await once(server, 'listening')
515 await once(server, 'listening')
552 await once(server, 'listening')
583 await once(server, 'listening')
[all …]
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-multivhost/
DREADME.md3 This creates a single server that creates three vhosts listening on both :7681 and
4 :7682. Two separate vhosts share listening on :7682.
/third_party/node/test/sequential/
Dtest-watch-mode-inspect.mjs65 assert.ok(stderr.match(/Debugger listening on ws:\/\//g).length >= restarts);
90 assert.strictEqual(stderr.match(/Debugger listening on ws:\/\//g).length, 1);
/third_party/node/deps/npm/node_modules/socks/docs/examples/typescript/
DbindExample.md21 The 'bind' command can only be used by creating a new SocksClient instance and listening for 'bound…
46 // This event is fired when the SOCKS server has started listening on a new port for incoming conne…
/third_party/node/deps/npm/node_modules/socks/docs/examples/javascript/
DbindExample.md21 The 'bind' command can only be used by creating a new SocksClient instance and listening for 'bound…
46 // This event is fired when the SOCKS server has started listening on a new port for incoming conne…
/third_party/curl/tests/data/
Dtest1924 attempt connect to non-listening socket

123456