@@ -124,6 +124,26 @@ added: v0.3.4
124124
125125See [ ` http.Server ` ] [ ] for more information.
126126
127+ ### ` server.activeConnections() `
128+
129+ <!-- YAML
130+ added: REPLACEME
131+ -->
132+
133+ * Returns: {net.Socket\[ ] }
134+
135+ See [ ` http.Server.activeConnections() ` ] [ ] .
136+
137+ ### ` server.connections() `
138+
139+ <!-- YAML
140+ added: REPLACEME
141+ -->
142+
143+ * Returns: {net.Socket\[ ] }
144+
145+ See [ ` http.Server.connections() ` ] [ ] .
146+
127147### ` server.close([callback]) `
128148
129149<!-- YAML
@@ -133,7 +153,17 @@ added: v0.1.90
133153* ` callback ` {Function}
134154* Returns: {https.Server}
135155
136- See [ ` server.close() ` ] [ `http.close()` ] from the HTTP module for details.
156+ See [ ` http.Server.close() ` ] [ ] .
157+
158+ ### ` server.expiredConnections() `
159+
160+ <!-- YAML
161+ added: REPLACEME
162+ -->
163+
164+ * Returns: {net.Socket\[ ] }
165+
166+ See [ ` http.Server.expiredConnections() ` ] [ ] .
137167
138168### ` server.headersTimeout `
139169
@@ -143,7 +173,17 @@ added: v11.3.0
143173
144174* {number} ** Default:** ` 60000 `
145175
146- See [ ` http.Server#headersTimeout ` ] [ ] .
176+ See [ ` http.Server.headersTimeout ` ] [ ] .
177+
178+ ### ` server.idleConnections() `
179+
180+ <!-- YAML
181+ added: REPLACEME
182+ -->
183+
184+ * Returns: {net.Socket\[ ] }
185+
186+ See [ ` http.Server.idleConnections() ` ] [ ] .
147187
148188### ` server.listen() `
149189
@@ -154,7 +194,7 @@ This method is identical to [`server.listen()`][] from [`net.Server`][].
154194
155195* {number} ** Default:** ` 2000 `
156196
157- See [ ` http.Server# maxHeadersCount ` ] [ ] .
197+ See [ ` http.Server. maxHeadersCount ` ] [ ] .
158198
159199### ` server.requestTimeout `
160200
@@ -164,7 +204,7 @@ added: v14.11.0
164204
165205* {number} ** Default:** ` 0 `
166206
167- See [ ` http.Server# requestTimeout ` ] [ ] .
207+ See [ ` http.Server. requestTimeout ` ] [ ] .
168208
169209### ` server.setTimeout([msecs][, callback]) `
170210
@@ -176,7 +216,7 @@ added: v0.11.2
176216* ` callback ` {Function}
177217* Returns: {https.Server}
178218
179- See [ ` http.Server# setTimeout() ` ] [ ] .
219+ See [ ` http.Server. setTimeout() ` ] [ ] .
180220
181221### ` server.timeout `
182222
@@ -190,7 +230,7 @@ changes:
190230
191231* {number} ** Default:** 0 (no timeout)
192232
193- See [ ` http.Server# timeout ` ] [ ] .
233+ See [ ` http.Server. timeout ` ] [ ] .
194234
195235### ` server.keepAliveTimeout `
196236
@@ -200,7 +240,7 @@ added: v8.0.0
200240
201241* {number} ** Default:** ` 5000 ` (5 seconds)
202242
203- See [ ` http.Server# keepAliveTimeout ` ] [ ] .
243+ See [ ` http.Server. keepAliveTimeout ` ] [ ] .
204244
205245## ` https.createServer([options][, requestListener]) `
206246
@@ -523,14 +563,18 @@ headers: max-age=0; pin-sha256="WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18="; p
523563[ `http.Agent(options)` ] : http.md#new-agentoptions
524564[ `http.Agent` ] : http.md#class-httpagent
525565[ `http.ClientRequest` ] : http.md#class-httpclientrequest
526- [ `http.Server#headersTimeout` ] : http.md#serverheaderstimeout
527- [ `http.Server#keepAliveTimeout` ] : http.md#serverkeepalivetimeout
528- [ `http.Server#maxHeadersCount` ] : http.md#servermaxheaderscount
529- [ `http.Server#requestTimeout` ] : http.md#serverrequesttimeout
530- [ `http.Server#setTimeout()` ] : http.md#serversettimeoutmsecs-callback
531- [ `http.Server#timeout` ] : http.md#servertimeout
566+ [ `http.Server.activeConnections()` ] : http.md#serveractiveconnections
567+ [ `http.Server.close()` ] : http.md#serverclosecallback
568+ [ `http.Server.connections()` ] : http.md#serverconnections
569+ [ `http.Server.expiredconnections()` ] : http.md#serverexpiredconnections
570+ [ `http.Server.headersTimeout` ] : http.md#serverheaderstimeout
571+ [ `http.Server.idleconnections()` ] : http.md#serveridleconnections
572+ [ `http.Server.keepAliveTimeout` ] : http.md#serverkeepalivetimeout
573+ [ `http.Server.maxHeadersCount` ] : http.md#servermaxheaderscount
574+ [ `http.Server.requestTimeout` ] : http.md#serverrequesttimeout
575+ [ `http.Server.setTimeout()` ] : http.md#serversettimeoutmsecs-callback
576+ [ `http.Server.timeout` ] : http.md#servertimeout
532577[ `http.Server` ] : http.md#class-httpserver
533- [ `http.close()` ] : http.md#serverclosecallback
534578[ `http.createServer()` ] : http.md#httpcreateserveroptions-requestlistener
535579[ `http.get()` ] : http.md#httpgetoptions-callback
536580[ `http.request()` ] : http.md#httprequestoptions-callback
0 commit comments