OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "remoting/protocol/ssl_hmac_channel_authenticator.h" | 5 #include "remoting/protocol/ssl_hmac_channel_authenticator.h" |
6 | 6 |
7 #include <stdint.h> | 7 #include <stdint.h> |
8 | 8 |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/bind_helpers.h" | 12 #include "base/bind_helpers.h" |
13 #include "base/callback_helpers.h" | 13 #include "base/callback_helpers.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/memory/ptr_util.h" | 15 #include "base/memory/ptr_util.h" |
16 #include "build/build_config.h" | 16 #include "build/build_config.h" |
17 #include "crypto/secure_util.h" | 17 #include "crypto/secure_util.h" |
18 #include "net/base/host_port_pair.h" | 18 #include "net/base/host_port_pair.h" |
19 #include "net/base/io_buffer.h" | 19 #include "net/base/io_buffer.h" |
20 #include "net/base/ip_address.h" | 20 #include "net/base/ip_address.h" |
21 #include "net/base/net_errors.h" | 21 #include "net/base/net_errors.h" |
22 #include "net/cert/cert_status_flags.h" | 22 #include "net/cert/cert_status_flags.h" |
23 #include "net/cert/cert_verifier.h" | 23 #include "net/cert/cert_verifier.h" |
24 #include "net/cert/cert_verify_result.h" | 24 #include "net/cert/cert_verify_result.h" |
25 #include "net/cert/ct_policy_enforcer.h" | 25 #include "net/cert/ct_policy_enforcer.h" |
26 #include "net/cert/ct_policy_status.h" | 26 #include "net/cert/ct_policy_status.h" |
27 #include "net/cert/ct_verifier.h" | 27 #include "net/cert/ct_verifier.h" |
28 #include "net/cert/x509_certificate.h" | 28 #include "net/cert/x509_certificate.h" |
29 #include "net/http/transport_security_state.h" | 29 #include "net/http/transport_security_state.h" |
| 30 #include "net/log/net_log_with_source.h" |
30 #include "net/socket/client_socket_handle.h" | 31 #include "net/socket/client_socket_handle.h" |
31 #include "net/socket/ssl_client_socket.h" | 32 #include "net/socket/ssl_client_socket.h" |
32 #include "net/socket/ssl_server_socket.h" | 33 #include "net/socket/ssl_server_socket.h" |
33 #include "net/ssl/ssl_config_service.h" | 34 #include "net/ssl/ssl_config_service.h" |
34 #include "net/ssl/ssl_server_config.h" | 35 #include "net/ssl/ssl_server_config.h" |
35 #include "remoting/base/rsa_key_pair.h" | 36 #include "remoting/base/rsa_key_pair.h" |
36 #include "remoting/protocol/auth_util.h" | 37 #include "remoting/protocol/auth_util.h" |
37 #include "remoting/protocol/p2p_stream_socket.h" | 38 #include "remoting/protocol/p2p_stream_socket.h" |
38 | 39 |
39 #if defined(OS_NACL) | 40 #if defined(OS_NACL) |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
487 std::move(socket_), std::move(server_context_))); | 488 std::move(socket_), std::move(server_context_))); |
488 } | 489 } |
489 } | 490 } |
490 | 491 |
491 void SslHmacChannelAuthenticator::NotifyError(int error) { | 492 void SslHmacChannelAuthenticator::NotifyError(int error) { |
492 base::ResetAndReturn(&done_callback_).Run(error, nullptr); | 493 base::ResetAndReturn(&done_callback_).Run(error, nullptr); |
493 } | 494 } |
494 | 495 |
495 } // namespace protocol | 496 } // namespace protocol |
496 } // namespace remoting | 497 } // namespace remoting |
OLD | NEW |