mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
24 lines
668 B
C++
24 lines
668 B
C++
|
// Copyright 2015 The Chromium Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#include "net/ssl/ssl_server_config.h"
|
||
|
|
||
|
#include "net/socket/ssl_client_socket.h"
|
||
|
#include "net/ssl/ssl_config.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
SSLServerConfig::SSLServerConfig()
|
||
|
: version_min(kDefaultSSLVersionMin),
|
||
|
version_max(kDefaultSSLVersionMax),
|
||
|
require_ecdhe(false),
|
||
|
client_cert_type(NO_CLIENT_CERT),
|
||
|
client_cert_verifier(nullptr) {}
|
||
|
|
||
|
SSLServerConfig::SSLServerConfig(const SSLServerConfig& other) = default;
|
||
|
|
||
|
SSLServerConfig::~SSLServerConfig() = default;
|
||
|
|
||
|
} // namespace net
|