OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 /* | 5 /* |
6 * Public header for exported OCSP types. | 6 * Public header for exported OCSP types. |
7 * | 7 * |
8 * $Id: ocspt.h,v 1.11.2.1 2012/12/12 16:38:39 wtc%google.com Exp $ | 8 * $Id: ocspt.h,v 1.12 2012/12/12 16:03:44 wtc%google.com Exp $ |
9 */ | 9 */ |
10 | 10 |
11 #ifndef _OCSPT_H_ | 11 #ifndef _OCSPT_H_ |
12 #define _OCSPT_H_ | 12 #define _OCSPT_H_ |
13 | 13 |
14 /* | 14 /* |
15 * The following are all opaque types. If someone needs to get at | 15 * The following are all opaque types. If someone needs to get at |
16 * a field within, then we need to fix the API. Try very hard not | 16 * a field within, then we need to fix the API. Try very hard not |
17 * make the type available to them. | 17 * make the type available to them. |
18 */ | 18 */ |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 * save it, along with the value, into a data structure. | 294 * save it, along with the value, into a data structure. |
295 */ | 295 */ |
296 | 296 |
297 typedef enum { | 297 typedef enum { |
298 ocspResponderID_other = -1, /* unknown kind of responderID */ | 298 ocspResponderID_other = -1, /* unknown kind of responderID */ |
299 ocspResponderID_byName = 1, | 299 ocspResponderID_byName = 1, |
300 ocspResponderID_byKey = 2 | 300 ocspResponderID_byKey = 2 |
301 } CERTOCSPResponderIDType; | 301 } CERTOCSPResponderIDType; |
302 | 302 |
303 #endif /* _OCSPT_H_ */ | 303 #endif /* _OCSPT_H_ */ |
OLD | NEW |