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 * | |
8 * $Id$ | |
9 */ | 7 */ |
10 | 8 |
11 #ifndef _OCSPT_H_ | 9 #ifndef _OCSPT_H_ |
12 #define _OCSPT_H_ | 10 #define _OCSPT_H_ |
13 | 11 |
14 /* | 12 /* |
15 * The following are all opaque types. If someone needs to get at | 13 * 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 | 14 * a field within, then we need to fix the API. Try very hard not |
17 * make the type available to them. | 15 * make the type available to them. |
18 */ | 16 */ |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 * save it, along with the value, into a data structure. | 292 * save it, along with the value, into a data structure. |
295 */ | 293 */ |
296 | 294 |
297 typedef enum { | 295 typedef enum { |
298 ocspResponderID_other = -1, /* unknown kind of responderID */ | 296 ocspResponderID_other = -1, /* unknown kind of responderID */ |
299 ocspResponderID_byName = 1, | 297 ocspResponderID_byName = 1, |
300 ocspResponderID_byKey = 2 | 298 ocspResponderID_byKey = 2 |
301 } CERTOCSPResponderIDType; | 299 } CERTOCSPResponderIDType; |
302 | 300 |
303 #endif /* _OCSPT_H_ */ | 301 #endif /* _OCSPT_H_ */ |
OLD | NEW |