• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "net/ssl/ssl_cert_request_info.h"
6 
7 #include "net/cert/x509_certificate.h"
8 
9 namespace net {
10 
SSLCertRequestInfo()11 SSLCertRequestInfo::SSLCertRequestInfo() : is_proxy(false) {
12 }
13 
Reset()14 void SSLCertRequestInfo::Reset() {
15   host_and_port = HostPortPair();
16   is_proxy = false;
17   cert_authorities.clear();
18   cert_key_types.clear();
19   client_certs.clear();
20 }
21 
~SSLCertRequestInfo()22 SSLCertRequestInfo::~SSLCertRequestInfo() {
23 }
24 
25 }  // namespace net
26