| 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 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ | 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ |
| 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ | 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 int DoVerifyCertComplete(int result); | 123 int DoVerifyCertComplete(int result); |
| 124 void DoConnectCallback(int result); | 124 void DoConnectCallback(int result); |
| 125 void UpdateServerCert(); | 125 void UpdateServerCert(); |
| 126 void VerifyCT(); | 126 void VerifyCT(); |
| 127 | 127 |
| 128 void OnHandshakeIOComplete(int result); | 128 void OnHandshakeIOComplete(int result); |
| 129 void OnSendComplete(int result); | 129 void OnSendComplete(int result); |
| 130 void OnRecvComplete(int result); | 130 void OnRecvComplete(int result); |
| 131 | 131 |
| 132 int DoHandshakeLoop(int last_io_result); | 132 int DoHandshakeLoop(int last_io_result); |
| 133 int DoReadLoop(int result); | 133 int DoReadLoop(); |
| 134 int DoWriteLoop(int result); | 134 int DoWriteLoop(); |
| 135 int DoPayloadRead(); | 135 int DoPayloadRead(); |
| 136 int DoPayloadWrite(); | 136 int DoPayloadWrite(); |
| 137 | 137 |
| 138 int BufferSend(); | 138 int BufferSend(); |
| 139 int BufferRecv(); | 139 int BufferRecv(); |
| 140 void BufferSendComplete(int result); | 140 void BufferSendComplete(int result); |
| 141 void BufferRecvComplete(int result); | 141 void BufferRecvComplete(int result); |
| 142 void TransportWriteComplete(int result); | 142 void TransportWriteComplete(int result); |
| 143 int TransportReadComplete(int result); | 143 int TransportReadComplete(int result); |
| 144 | 144 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 // pinning failure. It is a (somewhat) human-readable string. | 301 // pinning failure. It is a (somewhat) human-readable string. |
| 302 std::string pinning_failure_log_; | 302 std::string pinning_failure_log_; |
| 303 | 303 |
| 304 BoundNetLog net_log_; | 304 BoundNetLog net_log_; |
| 305 base::WeakPtrFactory<SSLClientSocketOpenSSL> weak_factory_; | 305 base::WeakPtrFactory<SSLClientSocketOpenSSL> weak_factory_; |
| 306 }; | 306 }; |
| 307 | 307 |
| 308 } // namespace net | 308 } // namespace net |
| 309 | 309 |
| 310 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ | 310 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_OPENSSL_H_ |
| OLD | NEW |