1/*
2 * Copyright (c) 2002-2011 Apple Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24/*
25 * Modification History
26 *
27 * November 25, 2002	Dieter Siegmund (dieter@apple.com)
28 * - created
29 */
30
31#ifndef _EAP802_1X_EAPCLIENTTYPES_H
32#define _EAP802_1X_EAPCLIENTTYPES_H
33
34#include <stdint.h>
35
36enum {
37    /* EAPClient specific errors */
38    kEAPClientStatusOK = 0,
39    kEAPClientStatusFailed = 1,
40    kEAPClientStatusAllocationFailed = 2,
41    kEAPClientStatusUserInputRequired = 3,
42    kEAPClientStatusConfigurationInvalid = 4,
43    kEAPClientStatusProtocolNotSupported = 5,
44    kEAPClientStatusServerCertificateNotTrusted = 6,
45    kEAPClientStatusInnerProtocolNotSupported = 7,
46    kEAPClientStatusInternalError = 8,
47    kEAPClientStatusUserCancelledAuthentication = 9,
48    kEAPClientStatusUnknownRootCertificate = 10,
49    kEAPClientStatusNoRootCertificate = 11,
50    kEAPClientStatusCertificateExpired = 12,
51    kEAPClientStatusCertificateNotYetValid = 13,
52    kEAPClientStatusCertificateRequiresConfirmation = 14,
53    kEAPClientStatusUserInputNotPossible = 15,
54    kEAPClientStatusResourceUnavailable = 16,
55    kEAPClientStatusProtocolError = 17,
56    kEAPClientStatusAuthenticationStalled = 18,
57
58    /* domain specific errors */
59    kEAPClientStatusDomainSpecificErrorStart = 1000,
60    kEAPClientStatusErrnoError = 1000,		/* errno error */
61    kEAPClientStatusSecurityError = 1001,	/* Security framework error */
62    kEAPClientStatusPluginSpecificError = 1002,	/* plug-in specific error */
63};
64typedef int32_t EAPClientStatus;
65
66typedef int32_t EAPClientDomainSpecificError;
67
68#endif /* _EAP8021X_EAPCLIENTTYPES_H */
69