@@ -1530,7 +1530,9 @@ those platforms.
15301530#### ` socket.setKeepAlive([options]) `
15311531
15321532<!-- YAML
1533- added: v26.4.0
1533+ added:
1534+ - v26.4.0
1535+ - v24.19.0
15341536-->
15351537
15361538* ` options ` {Object}
@@ -1552,7 +1554,9 @@ socket.setKeepAlive({ enable: true, initialDelay: 1000, interval: 1000, count: 1
15521554<!-- YAML
15531555added: v0.1.92
15541556changes:
1555- - version: v26.4.0
1557+ - version:
1558+ - v26.4.0
1559+ - v24.19.0
15561560 pr-url: https://github.com/nodejs/node/pull/63825
15571561 description: Added the `interval` and `count` arguments to configure
15581562 `TCP_KEEPINTVL` and `TCP_KEEPCNT`.
@@ -1737,7 +1741,9 @@ This property represents the state of the connection as a string.
17371741## Class: ` net.BoundSocket `
17381742
17391743<!-- YAML
1740- added: v26.4.0
1744+ added:
1745+ - v26.4.0
1746+ - v24.19.0
17411747-->
17421748
17431749Allows for the synchronous creation of a pre-bound socket, that can be passed
@@ -1779,7 +1785,9 @@ server.listen(bound); // Adopt as a server, or pass to new net.Socket() instead.
17791785### ` new net.BoundSocket([options]) `
17801786
17811787<!-- YAML
1782- added: v26.4.0
1788+ added:
1789+ - v26.4.0
1790+ - v24.19.0
17831791changes:
17841792 - version: REPLACEME
17851793 pr-url: https://github.com/nodejs/node/pull/64399
@@ -1806,7 +1814,9 @@ changes:
18061814### ` boundSocket.address() `
18071815
18081816<!-- YAML
1809- added: v26.4.0
1817+ added:
1818+ - v26.4.0
1819+ - v24.19.0
18101820changes:
18111821 - version: REPLACEME
18121822 pr-url: https://github.com/nodejs/node/pull/64399
@@ -1836,7 +1846,9 @@ support.
18361846### ` boundSocket.fd() `
18371847
18381848<!-- YAML
1839- added: v26.4.0
1849+ added:
1850+ - v26.4.0
1851+ - v24.19.0
18401852-->
18411853
18421854* Returns: {integer} The underlying OS file descriptor, or ` -1 ` on platforms
@@ -1851,15 +1863,19 @@ to the adopting [`net.Server`][] or [`net.Socket`][] and `fd()` throws
18511863### ` boundSocket.close() `
18521864
18531865<!-- YAML
1854- added: v26.4.0
1866+ added:
1867+ - v26.4.0
1868+ - v24.19.0
18551869-->
18561870
18571871Releases the bound socket. Only needed when the handle is never adopted.
18581872
18591873### ` boundSocket[Symbol.dispose]() `
18601874
18611875<!-- YAML
1862- added: v26.4.0
1876+ added:
1877+ - v26.4.0
1878+ - v24.19.0
18631879-->
18641880
18651881Closes the handle if it has not been adopted or closed; otherwise a no-op.
0 commit comments