| khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 1 | // Copyright 2013 The Gorilla WebSocket Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style | ||||
| 3 | // license that can be found in the LICENSE file. | ||||
| 4 | |||||
| 5 | // +build go1.8 | ||||
| 6 | |||||
| 7 | package websocket | ||||
| 8 | |||||
| 9 | import "crypto/tls" | ||||
| 10 | |||||
| 11 | func cloneTLSConfig(cfg *tls.Config) *tls.Config { | ||||
| 12 | if cfg == nil { | ||||
| 13 | return &tls.Config{} | ||||
| 14 | } | ||||
| 15 | return cfg.Clone() | ||||
| 16 | } | ||||