2 * EAP peer: Method registration
3 * Copyright (c) 2004-2006, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
20 const struct eap_method
* eap_sm_get_eap_methods(int vendor
, EapType method
);
21 const struct eap_method
* eap_peer_get_methods(size_t *count
);
23 struct eap_method
* eap_peer_method_alloc(int version
, int vendor
,
24 EapType method
, const char *name
);
25 void eap_peer_method_free(struct eap_method
*method
);
26 int eap_peer_method_register(struct eap_method
*method
);
29 #ifdef IEEE8021X_EAPOL
31 EapType
eap_get_type(const char *name
, int *vendor
);
32 const char * eap_get_name(int vendor
, EapType type
);
33 size_t eap_get_names(char *buf
, size_t buflen
);
34 char ** eap_get_names_as_string_array(size_t *num
);
35 int eap_peer_register_methods(void);
36 void eap_peer_unregister_methods(void);
38 #else /* IEEE8021X_EAPOL */
40 static inline EapType
eap_get_type(const char *name
, int *vendor
)
42 *vendor
= EAP_VENDOR_IETF
;
46 static inline const char * eap_get_name(int vendor
, EapType type
)
51 static inline size_t eap_get_names(char *buf
, size_t buflen
)
56 static inline int eap_peer_register_methods(void)
61 static inline void eap_peer_unregister_methods(void)
65 #endif /* IEEE8021X_EAPOL */
68 #ifdef CONFIG_DYNAMIC_EAP_METHODS
70 int eap_peer_method_load(const char *so
);
71 int eap_peer_method_unload(struct eap_method
*method
);
73 #else /* CONFIG_DYNAMIC_EAP_METHODS */
75 static inline int eap_peer_method_load(const char *so
)
80 static inline int eap_peer_method_unload(struct eap_method
*method
)
85 #endif /* CONFIG_DYNAMIC_EAP_METHODS */
87 #endif /* EAP_METHODS_H */