Go to the source code of this file.
Data Structures | |
| struct | uam_mod |
| struct | uam_obj |
Macros | |
| #define | uam_attach(a, b) |
| #define | uam_detach(a) |
| #define | UAM_LIST(type) |
| #define | auth_unregister(a) |
Functions | |
| struct uam_mod * | uam_load (const char *, const char *) |
| void | uam_unload (struct uam_mod *) |
| unload the module. | |
| int | auth_load (const char *, const char *) |
| int | auth_register (const int, struct uam_obj *) |
| struct uam_obj * | auth_uamfind (const int, const char *, const int) |
| void | auth_unload (void) |
| int | getuamnames (const int, char *) |
interface between uam.c and auth.c
| #define auth_unregister | ( | a | ) |
| #define uam_attach | ( | a, | |
| b ) |
| #define uam_detach | ( | a | ) |
| #define UAM_LIST | ( | type | ) |
| int auth_load | ( | const char * | path, |
| const char * | list ) |
load all of the modules
| int auth_register | ( | const int | type, |
| struct uam_obj * | uam ) |
| struct uam_obj * auth_uamfind | ( | const int | type, |
| const char * | name, | ||
| const int | len ) |
just do a linked list search. this could be sped up with a hashed list, but i doubt anyone's going to have enough uams to matter.
| void auth_unload | ( | void | ) |
get rid of all of the uams
| int getuamnames | ( | const int | type, |
| char * | uamnames ) |
Return a list of names for loaded uams
|
extern |
|
extern |
unload the module.
we check for a cleanup function, but we don't die if one doesn't exist. however, things are likely to leak without one.