diff options
Diffstat (limited to 'src/net/http/http.go')
| -rw-r--r-- | src/net/http/http.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/http/http.go b/src/net/http/http.go index 407e15a1c4..c46b656581 100644 --- a/src/net/http/http.go +++ b/src/net/http/http.go @@ -88,6 +88,9 @@ func (p Protocols) String() string { if p.UnencryptedHTTP2() { s = append(s, "UnencryptedHTTP2") } + if p.http3() { + s = append(s, "HTTP3") + } return "{" + strings.Join(s, ",") + "}" } |
