aboutsummaryrefslogtreecommitdiffstats
path: root/testing/sssd/nss.h
diff options
context:
space:
mode:
Diffstat (limited to 'testing/sssd/nss.h')
-rw-r--r--testing/sssd/nss.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/sssd/nss.h b/testing/sssd/nss.h
new file mode 100644
index 0000000000..e15ee3ee34
--- /dev/null
+++ b/testing/sssd/nss.h
@@ -0,0 +1,15 @@
+#ifndef NSS__H
+#define NSS__H
+
+#include <nss/nss.h>
+
+enum nss_status
+{
+ NSS_STATUS_TRYAGAIN = -2,
+ NSS_STATUS_UNAVAIL = -1,
+ NSS_STATUS_NOTFOUND = 0,
+ NSS_STATUS_SUCCESS = 1,
+ NSS_STATUS_RETURN = 2
+};
+
+#endif