0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-03 17:28:18 +02:00

authd/provider: add these to provider.h

This commit is contained in:
Elizabeth Myers 2016-03-10 03:15:03 -06:00
parent 0f95a2749f
commit 9b5b2dedc0

View file

@ -72,6 +72,13 @@ struct auth_provider
provider_complete_t completed; /* Callback for when other performers complete (think dependency chains) */
};
extern rb_dlink_list auth_providers;
extern struct auth_client auth_clients[MAX_CLIENTS];
void load_provider(struct auth_provider *provider);
void unload_provider(struct auth_provider *provider);
void init_providers(void);
void destroy_providers(void);
void cancel_providers(struct auth_client *auth);