@@ -1437,7 +1437,7 @@ those platforms.
14371437#### ` socket.setKeepAlive([options]) `
14381438
14391439<!-- YAML
1440- added: REPLACEME
1440+ added: v26.4.0
14411441-->
14421442
14431443* ` options ` {Object}
@@ -1459,7 +1459,7 @@ socket.setKeepAlive({ enable: true, initialDelay: 1000, interval: 1000, count: 1
14591459<!-- YAML
14601460added: v0.1.92
14611461changes:
1462- - version: REPLACEME
1462+ - version: v26.4.0
14631463 pr-url: https://github.com/nodejs/node/pull/63825
14641464 description: Added the `interval` and `count` arguments to configure
14651465 `TCP_KEEPINTVL` and `TCP_KEEPCNT`.
@@ -1639,7 +1639,7 @@ This property represents the state of the connection as a string.
16391639## Class: ` net.BoundSocket `
16401640
16411641<!-- YAML
1642- added: REPLACEME
1642+ added: v26.4.0
16431643-->
16441644
16451645Allows for the synchronous creation of a pre-bound socket, that can be passed
@@ -1665,7 +1665,7 @@ server.listen(bound); // Adopt as a server, or pass to new net.Socket() instead.
16651665### ` new net.BoundSocket([options]) `
16661666
16671667<!-- YAML
1668- added: REPLACEME
1668+ added: v26.4.0
16691669-->
16701670
16711671* ` options ` {Object}
@@ -1684,7 +1684,7 @@ added: REPLACEME
16841684### ` boundSocket.address() `
16851685
16861686<!-- YAML
1687- added: REPLACEME
1687+ added: v26.4.0
16881688-->
16891689
16901690* Returns: {Object} An object with ` address ` , ` family ` , and ` port ` properties,
@@ -1696,7 +1696,7 @@ OS-assigned ephemeral port.
16961696### ` boundSocket.fd() `
16971697
16981698<!-- YAML
1699- added: REPLACEME
1699+ added: v26.4.0
17001700-->
17011701
17021702* Returns: {integer} The underlying OS file descriptor, or ` -1 ` on platforms
@@ -1711,15 +1711,15 @@ to the adopting [`net.Server`][] or [`net.Socket`][] and `fd()` throws
17111711### ` boundSocket.close() `
17121712
17131713<!-- YAML
1714- added: REPLACEME
1714+ added: v26.4.0
17151715-->
17161716
17171717Releases the bound socket. Only needed when the handle is never adopted.
17181718
17191719### ` boundSocket[Symbol.dispose]() `
17201720
17211721<!-- YAML
1722- added: REPLACEME
1722+ added: v26.4.0
17231723-->
17241724
17251725Closes the handle if it has not been adopted or closed; otherwise a no-op.
0 commit comments