From fcef1231eea30ee9cdc75f3f39f4b9207a84ea1d Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Tue, 24 Feb 2009 19:37:42 -0500 Subject: Add PAM client Also rename nss_client to sss_client and reuse the same pipe protocol for both the NSS and PAM client libraries. Signed-off-by: Simo Sorce --- sss_client/sss_errno.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sss_client/sss_errno.h (limited to 'sss_client/sss_errno.h') diff --git a/sss_client/sss_errno.h b/sss_client/sss_errno.h new file mode 100644 index 000000000..365263f2f --- /dev/null +++ b/sss_client/sss_errno.h @@ -0,0 +1,18 @@ +/* + * System Security Services Daemon. NSS Interface + * + * Copyright (C) Simo Sorce 2007 + * + * You can used this header file in any way you see fit provided copyright + * notices are preserved. + * + */ + +#ifndef _SSSERR_H +#define _SSSERR_H + +#define SSSE_OK 0 +#define SSSE_INTERR -10 /* internal error */ +#define SSSE_BADDB -11 /* bad database */ + +#endif -- cgit