From 2dd3faebcd3cfd00efda38ffd2585d675e696b12 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Fri, 25 Jun 2010 11:28:20 -0400 Subject: Split proxy.c into smaller files proxy.c was growing too large to manage (and some graphical development tools could no longer open it because of memory limitations). This patch splits proxy.c into the following files: proxy_init.c: Setup routines for the plugin proxy_id.c: Functions to handle user and group lookups proxy_auth.c: Functions to handle PAM interactions proxy_common.c: Common utility routines --- src/providers/proxy/proxy_child.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'src/providers/proxy/proxy_child.c') diff --git a/src/providers/proxy/proxy_child.c b/src/providers/proxy/proxy_child.c index 4d853efbd..0f5884973 100644 --- a/src/providers/proxy/proxy_child.c +++ b/src/providers/proxy/proxy_child.c @@ -74,16 +74,6 @@ struct pc_ctx { uint32_t id; }; -struct authtok_conv { - uint32_t authtok_size; - uint8_t *authtok; - - uint32_t newauthtok_size; - uint8_t *newauthtok; - - bool sent_old; -}; - static int proxy_internal_conv(int num_msg, const struct pam_message **msgm, struct pam_response **response, void *appdata_ptr) { -- cgit