OLD | NEW |
1 // Copyright (c) 2008-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2008-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_mac.h" | 5 #include "net/socket/ssl_client_socket_mac.h" |
6 | 6 |
7 #include "base/singleton.h" | 7 #include "base/singleton.h" |
8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
9 #include "net/base/io_buffer.h" | 9 #include "net/base/io_buffer.h" |
10 #include "net/base/net_errors.h" | 10 #include "net/base/net_errors.h" |
11 #include "net/base/ssl_info.h" | 11 #include "net/base/ssl_info.h" |
12 | 12 |
13 // Welcome to Mac SSL. We've been waiting for you. | 13 // Welcome to Mac SSL. We've been waiting for you. |
14 // | 14 // |
15 // The Mac SSL implementation is, like the Windows and NSS implementations, a | 15 // The Mac SSL implementation is, like the Windows and NSS implementations, a |
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 | 753 |
754 if (rv < 0 && rv != ERR_IO_PENDING) { | 754 if (rv < 0 && rv != ERR_IO_PENDING) { |
755 return OSStatusFromNetError(rv); | 755 return OSStatusFromNetError(rv); |
756 } | 756 } |
757 | 757 |
758 // always lie to our caller | 758 // always lie to our caller |
759 return noErr; | 759 return noErr; |
760 } | 760 } |
761 | 761 |
762 } // namespace net | 762 } // namespace net |
OLD | NEW |