net/http.Server.TLSConfig (field)
16 uses
net/http (current package)
h2_bundle.go#L4077: if s.TLSConfig == nil {
h2_bundle.go#L4078: s.TLSConfig = new(tls.Config)
h2_bundle.go#L4079: } else if s.TLSConfig.CipherSuites != nil && s.TLSConfig.MinVersion < tls.VersionTLS13 {
h2_bundle.go#L4084: for _, cs := range s.TLSConfig.CipherSuites {
h2_bundle.go#L4105: s.TLSConfig.PreferServerCipherSuites = true
h2_bundle.go#L4107: if !http2strSliceContains(s.TLSConfig.NextProtos, http2NextProtoTLS) {
h2_bundle.go#L4108: s.TLSConfig.NextProtos = append(s.TLSConfig.NextProtos, http2NextProtoTLS)
h2_bundle.go#L4110: if !http2strSliceContains(s.TLSConfig.NextProtos, "http/1.1") {
h2_bundle.go#L4111: s.TLSConfig.NextProtos = append(s.TLSConfig.NextProtos, "http/1.1")
server.go#L2637: TLSConfig *tls.Config
server.go#L2993: if srv.TLSConfig == nil {
server.go#L3009: return strSliceContains(srv.TLSConfig.NextProtos, http2NextProtoTLS)
server.go#L3110: config := cloneTLSConfig(srv.TLSConfig)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |