From 2acda542874f720091f6bfcb7aad09e35a8b2375 Mon Sep 17 00:00:00 2001 From: "Andrew G. Morgan" Date: Sun, 9 Dec 2001 22:51:12 +0000 Subject: Relevant BUGIDs: 232194 Purpose of commit: new feature Commit summary: --------------- If you are looking for an object that you can blindly dlopen() and use to bind to pam w/ modules, this commit is for you. Its not fully integrated into the build tree, but I'd like some feedback before wiring it in as a regular feature. --- dynamic/test.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 dynamic/test.c (limited to 'dynamic/test.c') diff --git a/dynamic/test.c b/dynamic/test.c new file mode 100644 index 00000000..35496fe4 --- /dev/null +++ b/dynamic/test.c @@ -0,0 +1,27 @@ +#include +#include +#include + +#include +#include + +int main(int argc, char **argv) +{ + void *handle; + + handle = dlopen("./pam.so", RTLD_NOW); + if (handle == NULL) { + fprintf(stderr, "failed to load pam.so: %s\n", dlerror()); + exit(1); + } + + /* handle->XXX points to each of the PAM functions */ + + + if (dlclose(handle)) { + fprintf(stderr, "failed to unload pam.so: %s\n", dlerror()); + exit(1); + } + + exit(0); +} -- cgit v1.2.3