@@ -1439,7 +1439,7 @@ those platforms.
14391439#### ` socket.setKeepAlive([options]) `
14401440
14411441<!-- YAML
1442- added: REPLACEME
1442+ added: v26.4.0
14431443-->
14441444
14451445* ` options ` {Object}
@@ -1461,7 +1461,7 @@ socket.setKeepAlive({ enable: true, initialDelay: 1000, interval: 1000, count: 1
14611461<!-- YAML
14621462added: v0.1.92
14631463changes:
1464- - version: REPLACEME
1464+ - version: v26.4.0
14651465 pr-url: https://github.com/nodejs/node/pull/63825
14661466 description: Added the `interval` and `count` arguments to configure
14671467 `TCP_KEEPINTVL` and `TCP_KEEPCNT`.
@@ -1645,7 +1645,7 @@ This property represents the state of the connection as a string.
16451645## Class: ` net.BoundSocket `
16461646
16471647<!-- YAML
1648- added: REPLACEME
1648+ added: v26.4.0
16491649-->
16501650
16511651Allows for the synchronous creation of a pre-bound socket, that can be passed
@@ -1671,7 +1671,7 @@ server.listen(bound); // Adopt as a server, or pass to new net.Socket() instead.
16711671### ` new net.BoundSocket([options]) `
16721672
16731673<!-- YAML
1674- added: REPLACEME
1674+ added: v26.4.0
16751675-->
16761676
16771677* ` options ` {Object}
@@ -1690,7 +1690,7 @@ added: REPLACEME
16901690### ` boundSocket.address() `
16911691
16921692<!-- YAML
1693- added: REPLACEME
1693+ added: v26.4.0
16941694-->
16951695
16961696* Returns: {Object} An object with ` address ` , ` family ` , and ` port ` properties,
@@ -1702,7 +1702,7 @@ OS-assigned ephemeral port.
17021702### ` boundSocket.fd() `
17031703
17041704<!-- YAML
1705- added: REPLACEME
1705+ added: v26.4.0
17061706-->
17071707
17081708* Returns: {integer} The underlying OS file descriptor, or ` -1 ` on platforms
@@ -1717,15 +1717,15 @@ to the adopting [`net.Server`][] or [`net.Socket`][] and `fd()` throws
17171717### ` boundSocket.close() `
17181718
17191719<!-- YAML
1720- added: REPLACEME
1720+ added: v26.4.0
17211721-->
17221722
17231723Releases the bound socket. Only needed when the handle is never adopted.
17241724
17251725### ` boundSocket[Symbol.dispose]() `
17261726
17271727<!-- YAML
1728- added: REPLACEME
1728+ added: v26.4.0
17291729-->
17301730
17311731Closes the handle if it has not been adopted or closed; otherwise a no-op.
0 commit comments