Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(352)

Side by Side Diff: net/base/net_errors.h

Issue 178003011: net: a weak DH key is not a certificate error. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_BASE_NET_ERRORS_H__ 5 #ifndef NET_BASE_NET_ERRORS_H__
6 #define NET_BASE_NET_ERRORS_H__ 6 #define NET_BASE_NET_ERRORS_H__
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 17 matching lines...) Expand all
28 // The value of the first certificate error code. 28 // The value of the first certificate error code.
29 ERR_CERT_BEGIN = ERR_CERT_COMMON_NAME_INVALID, 29 ERR_CERT_BEGIN = ERR_CERT_COMMON_NAME_INVALID,
30 }; 30 };
31 31
32 // Returns a textual representation of the error code for logging purposes. 32 // Returns a textual representation of the error code for logging purposes.
33 NET_EXPORT const char* ErrorToString(int error); 33 NET_EXPORT const char* ErrorToString(int error);
34 34
35 // Returns true if |error| is a certificate error code. 35 // Returns true if |error| is a certificate error code.
36 inline bool IsCertificateError(int error) { 36 inline bool IsCertificateError(int error) {
37 // Certificate errors are negative integers from net::ERR_CERT_BEGIN 37 // Certificate errors are negative integers from net::ERR_CERT_BEGIN
38 // (inclusive) to net::ERR_CERT_END (exclusive) in *decreasing* order. 38 // (inclusive) to net::ERR_CERT_END (exclusive) in *decreasing* order.
wtc 2014/03/04 20:13:30 This comment should be updated to note ERR_SSL_PIN
agl 2014/03/04 22:54:38 Done.
39 return (error <= ERR_CERT_BEGIN && error > ERR_CERT_END) || 39 return (error <= ERR_CERT_BEGIN && error > ERR_CERT_END) ||
40 (error == ERR_SSL_WEAK_SERVER_EPHEMERAL_DH_KEY) ||
41 (error == ERR_SSL_PINNED_KEY_NOT_IN_CERT_CHAIN); 40 (error == ERR_SSL_PINNED_KEY_NOT_IN_CERT_CHAIN);
42 } 41 }
43 42
44 // Map system error code to Error. 43 // Map system error code to Error.
45 NET_EXPORT Error MapSystemError(int os_error); 44 NET_EXPORT Error MapSystemError(int os_error);
46 45
47 // Returns a list of all the possible net error codes (not counting OK). This 46 // Returns a list of all the possible net error codes (not counting OK). This
48 // is intended for use with UMA histograms that are reporting the result of 47 // is intended for use with UMA histograms that are reporting the result of
49 // an action that is represented as a net error code. 48 // an action that is represented as a net error code.
50 // 49 //
51 // Note that the error codes are all positive (since histograms expect positive 50 // Note that the error codes are all positive (since histograms expect positive
52 // sample values). Also note that a guard bucket is created after any valid 51 // sample values). Also note that a guard bucket is created after any valid
53 // error code that is not followed immediately by a valid error code. 52 // error code that is not followed immediately by a valid error code.
54 NET_EXPORT std::vector<int> GetAllErrorCodesForUma(); 53 NET_EXPORT std::vector<int> GetAllErrorCodesForUma();
55 54
56 // A convenient function to translate file error to net error code. 55 // A convenient function to translate file error to net error code.
57 NET_EXPORT Error FileErrorToNetError(base::File::Error file_error); 56 NET_EXPORT Error FileErrorToNetError(base::File::Error file_error);
58 57
59 } // namespace net 58 } // namespace net
60 59
61 #endif // NET_BASE_NET_ERRORS_H__ 60 #endif // NET_BASE_NET_ERRORS_H__
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698