diff options
| author | Will Hawkins <[email protected]> | 2022-03-15 21:08:03 -0400 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2022-03-15 21:08:03 -0400 |
| commit | 0edc21d2d20c5eaf3cb0d22ded2e4d8588769734 (patch) | |
| tree | 634708fa405a2e4311c33f71f50d365f2e3bf316 /go.mod | |
| parent | 6a2d8d4acb57f653d61809159fbe6b4604db9b2d (diff) | |
Major update: SSL Key Logging, HTTP2 support
This is a "How was this ever working?" update.
1. As it turns out, when you customize a Transport for an
http.Client, the transport is 'naturally' an HTTP1 transport.
To make it connect via HTTP2, you must use an http2.Transport
from the golang.org/x/net/http2 package.
2. Add support for logging TLS per-session keys in order
to aid debugging.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ module github.com/hawkinsw/goresponsiveness -go 1.17
\ No newline at end of file +go 1.17 + +require golang.org/x/net v0.0.0-20220225172249-27dd8689420f + +require golang.org/x/text v0.3.7 // indirect |
