aboutsummaryrefslogtreecommitdiff
path: root/tests/mock_pam.h
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2012-09-19 14:35:36 -0500
committerTed Gould <ted@gould.cx>2012-09-19 14:35:36 -0500
commite552688b70889a4879ef16ce38bc8c95e6f447c7 (patch)
tree5395da7dda8a54c0a871ea4350daa5c62d54583a /tests/mock_pam.h
parent0be6edb877829f491d491e8b0fb7d06916bef499 (diff)
downloadlibpam-x2go-e552688b70889a4879ef16ce38bc8c95e6f447c7.tar.gz
libpam-x2go-e552688b70889a4879ef16ce38bc8c95e6f447c7.tar.bz2
libpam-x2go-e552688b70889a4879ef16ce38bc8c95e6f447c7.zip
Steal a bunch of test infrastructure from libpam-icaclient
Diffstat (limited to 'tests/mock_pam.h')
-rw-r--r--tests/mock_pam.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/mock_pam.h b/tests/mock_pam.h
new file mode 100644
index 0000000..eb88a2e
--- /dev/null
+++ b/tests/mock_pam.h
@@ -0,0 +1,23 @@
+/*
+ * Copyright © 2012 Canonical Ltd. All rights reserved.
+ *
+ * Author(s): David Barth <david.barth@canonical.com>
+ *
+ */
+
+#ifndef __MOCK_PAM_H__
+#define __MOCK_PAM_H__
+
+#include <security/pam_modules.h>
+#include <security/pam_modutil.h>
+#include <security/pam_appl.h>
+
+#define PAM_NUM_ITEMS PAM_AUTHTOK_TYPE
+
+typedef struct pam_handle pam_handle_t;
+
+pam_handle_t *pam_handle_new (void);
+int pam_get_item (const pam_handle_t *pamh, int type, const void **value);
+int pam_set_item (pam_handle_t *pamh, int type, const void *value);
+
+#endif