blob: 4f0d943723a9d094c1693892812377a51f6791bb [file] [log] [blame]
khenaidooffe076b2019-01-15 16:08:08 -05001// 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
7package websocket
8
9import "crypto/tls"
10
11func cloneTLSConfig(cfg *tls.Config) *tls.Config {
12 if cfg == nil {
13 return &tls.Config{}
14 }
15 return cfg.Clone()
16}