Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorHarshitha KP <harshi46@in.ibm.com>2020-03-31 14:10:26 +0300
committerBeth Griggs <Bethany.Griggs@uk.ibm.com>2020-04-14 13:03:19 +0300
commitfd300ddaa743e8936ff6fd1438c11c147f2ca8db (patch)
treea09372d01b398ebaa5161f60d34a14bd6d44c6b1 /doc/api
parent9ed6d845e6ad65e9d812967febe509bff1ff8376 (diff)
doc: clarify `listening` event
Co-authored-by: Divyanshu <dsinecos@gmail.com> PR-URL: https://github.com/nodejs/node/pull/32581 Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/dgram.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/api/dgram.md b/doc/api/dgram.md
index d3eee26cdd5..57a38e3895f 100644
--- a/doc/api/dgram.md
+++ b/doc/api/dgram.md
@@ -73,8 +73,11 @@ function is passed a single `Error` object.
added: v0.1.99
-->
-The `'listening'` event is emitted whenever a socket begins listening for
-datagram messages. This occurs as soon as UDP sockets are created.
+The `'listening'` event is emitted once the `dgram.Socket` is addressable and
+can receive data. This happens either explicitly with `socket.bind()` or
+implicitly the first time data is sent using `socket.send()`.
+Until the `dgram.Socket` is listening, the underlying system resources do not
+exist and calls such as `socket.address()` and `socket.setTTL()` will fail.
### Event: `'message'`
<!-- YAML