(ctx context.Context)
| 48 | } |
| 49 | |
| 50 | func h1FallbackFromContext(ctx context.Context) bool { |
| 51 | h1Fallback, _ := ctx.Value(h1FallbackKey{}).(bool) |
| 52 | return h1Fallback |
| 53 | } |
| 54 | |
| 55 | type handshaker interface { |
| 56 | HandshakeContext(context.Context) error |
no test coverage detected