mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2026-08-18 06:55:34 +03:00
Import chromium-64.0.3282.140
This commit is contained in:
66
net/socket/ssl_client_socket.cc
Normal file
66
net/socket/ssl_client_socket.cc
Normal file
@@ -0,0 +1,66 @@
|
||||
// Copyright (c) 2012 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 "base/metrics/histogram_macros.h"
|
||||
#include "base/metrics/sparse_histogram.h"
|
||||
#include "base/strings/string_util.h"
|
||||
#include "build/build_config.h"
|
||||
#include "crypto/ec_private_key.h"
|
||||
#include "net/base/net_errors.h"
|
||||
#include "net/socket/ssl_client_socket_impl.h"
|
||||
#include "net/ssl/channel_id_service.h"
|
||||
#include "net/ssl/ssl_config_service.h"
|
||||
|
||||
namespace net {
|
||||
|
||||
SSLClientSocket::SSLClientSocket()
|
||||
: signed_cert_timestamps_received_(false),
|
||||
stapled_ocsp_response_received_(false) {}
|
||||
|
||||
// static
|
||||
void SSLClientSocket::SetSSLKeyLogFile(const base::FilePath& path) {
|
||||
#if !defined(OS_NACL)
|
||||
SSLClientSocketImpl::SetSSLKeyLogFile(path);
|
||||
#else
|
||||
NOTIMPLEMENTED();
|
||||
#endif
|
||||
}
|
||||
|
||||
bool SSLClientSocket::IgnoreCertError(int error, int load_flags) {
|
||||
if (error == OK)
|
||||
return true;
|
||||
return (load_flags & LOAD_IGNORE_ALL_CERT_ERRORS) &&
|
||||
IsCertificateError(error);
|
||||
}
|
||||
|
||||
SSLErrorDetails SSLClientSocket::GetConnectErrorDetails() const {
|
||||
return SSLErrorDetails::kOther;
|
||||
}
|
||||
|
||||
// static
|
||||
std::vector<uint8_t> SSLClientSocket::SerializeNextProtos(
|
||||
const NextProtoVector& next_protos) {
|
||||
std::vector<uint8_t> wire_protos;
|
||||
for (const NextProto next_proto : next_protos) {
|
||||
const std::string proto = NextProtoToString(next_proto);
|
||||
if (proto.size() > 255) {
|
||||
LOG(WARNING) << "Ignoring overlong ALPN protocol: " << proto;
|
||||
continue;
|
||||
}
|
||||
if (proto.size() == 0) {
|
||||
LOG(WARNING) << "Ignoring empty ALPN protocol";
|
||||
continue;
|
||||
}
|
||||
wire_protos.push_back(proto.size());
|
||||
for (const char ch : proto) {
|
||||
wire_protos.push_back(static_cast<uint8_t>(ch));
|
||||
}
|
||||
}
|
||||
|
||||
return wire_protos;
|
||||
}
|
||||
|
||||
} // namespace net
|
||||
Reference in New Issue
Block a user