-
|
Hello, I noticed that in the StartHTTPListener function, the server is initialized with the following line:
This appears to explicitly disable HTTP/2 support, even though Go's http.Server would enable it by default for HTTPS connections. Thank you for your insights! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
It has a habit of sending packets even when the connection is "closed," which can increase the visibility of the connections in network telemetry and tools like netstat. |
Beta Was this translation helpful? Give feedback.
It has a habit of sending packets even when the connection is "closed," which can increase the visibility of the connections in network telemetry and tools like netstat.