From 9b5b2dedc0a7d98efc392fe0e5f123d1e6a3fee7 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Thu, 10 Mar 2016 03:15:03 -0600 Subject: [PATCH] authd/provider: add these to provider.h --- authd/provider.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/authd/provider.h b/authd/provider.h index 87a859d9b..0b2161dac 100644 --- a/authd/provider.h +++ b/authd/provider.h @@ -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);