Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(836)

Unified Diff: net/ssl/ssl_server_config.cc

Issue 1376593007: SSL in EmbeddedTestServer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More cleanup. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/ssl/ssl_server_config.cc
diff --git a/net/ssl/ssl_server_config.cc b/net/ssl/ssl_server_config.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f7a979ecaaefd611aaa50e8b86816bde03f4e5ee
--- /dev/null
+++ b/net/ssl/ssl_server_config.cc
@@ -0,0 +1,20 @@
+// 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/socket/ssl_client_socket.h"
+#include "net/ssl/ssl_config.h"
+#include "net/ssl/ssl_server_config.h"
mmenke 2015/10/14 21:59:15 This should be first, one line above the others.
svaldez 2015/10/14 22:33:39 Done.
+
+namespace net {
+
+SSLServerConfig::SSLServerConfig()
+ : version_min(kDefaultSSLVersionMin),
+ version_max(SSL_PROTOCOL_VERSION_TLS1_2),
+ require_ecdhe(false),
+ require_client_cert(false),
+ server_cert(CERT_OK) {}
+
+SSLServerConfig::~SSLServerConfig() {}
+
+} // namespace net

Powered by Google App Engine
This is Rietveld 408576698