OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 "net/base/ssl_client_socket_win.h" | 5 #include "net/socket/ssl_client_socket_win.h" |
6 | 6 |
7 #include <schnlsp.h> | 7 #include <schnlsp.h> |
8 | 8 |
9 #include "base/lock.h" | 9 #include "base/lock.h" |
10 #include "base/singleton.h" | 10 #include "base/singleton.h" |
11 #include "base/stl_util-inl.h" | 11 #include "base/stl_util-inl.h" |
12 #include "base/string_util.h" | 12 #include "base/string_util.h" |
13 #include "net/base/connection_type_histograms.h" | 13 #include "net/base/connection_type_histograms.h" |
14 #include "net/base/io_buffer.h" | 14 #include "net/base/io_buffer.h" |
15 #include "net/base/net_errors.h" | 15 #include "net/base/net_errors.h" |
(...skipping 1165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1181 } | 1181 } |
1182 } | 1182 } |
1183 | 1183 |
1184 void SSLClientSocketWin::FreeSendBuffer() { | 1184 void SSLClientSocketWin::FreeSendBuffer() { |
1185 SECURITY_STATUS status = FreeContextBuffer(send_buffer_.pvBuffer); | 1185 SECURITY_STATUS status = FreeContextBuffer(send_buffer_.pvBuffer); |
1186 DCHECK(status == SEC_E_OK); | 1186 DCHECK(status == SEC_E_OK); |
1187 memset(&send_buffer_, 0, sizeof(send_buffer_)); | 1187 memset(&send_buffer_, 0, sizeof(send_buffer_)); |
1188 } | 1188 } |
1189 | 1189 |
1190 } // namespace net | 1190 } // namespace net |
OLD | NEW |