summaryrefslogtreecommitdiff
path: root/source3/nsswitch/hp_nss_common.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-01-08 21:11:25 +0000
committerJeremy Allison <jra@samba.org>2002-01-08 21:11:25 +0000
commit9178f892002547e5897a570e3a5be924aea34241 (patch)
treedc7c2f1a8f1e3ceb41b7542e955650c226317917 /source3/nsswitch/hp_nss_common.h
parent2689976514b5abb8829115a53cedaf1b7b71ca21 (diff)
downloadsamba-9178f892002547e5897a570e3a5be924aea34241.tar.gz
samba-9178f892002547e5897a570e3a5be924aea34241.tar.bz2
samba-9178f892002547e5897a570e3a5be924aea34241.zip
Getting ready to add winbindd support for HPUX 11.
Jeremy. (This used to be commit 012a9144124b5bde5fb1fe12c6147f32ccf2046e)
Diffstat (limited to 'source3/nsswitch/hp_nss_common.h')
-rw-r--r--source3/nsswitch/hp_nss_common.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/source3/nsswitch/hp_nss_common.h b/source3/nsswitch/hp_nss_common.h
new file mode 100644
index 0000000000..5cbccc934b
--- /dev/null
+++ b/source3/nsswitch/hp_nss_common.h
@@ -0,0 +1,48 @@
+#ifndef _HP_NSS_COMMON_H
+#define _HP_NSS_COMMON_H
+
+/*
+ Unix SMB/Netbios implementation.
+ Version 2.2
+
+ Donated by HP to enable Winbindd to build on HPUX 11.x.
+ Copyright (C) Jeremy Allison 2002.
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+*/
+
+#include <synch.h>
+#include <pthread.h>
+
+typedef enum {
+ NSS_SUCCESS,
+ NSS_NOTFOUND,
+ NSS_UNAVAIL,
+ NSS_TRYAGAIN
+} nss_status_t;
+
+struct nss_backend;
+
+typedef nss_status_t (*nss_backend_op_t)(struct nss_backend *, void *args);
+
+struct nss_backend {
+ nss_backend_op_t *ops;
+ int n_ops;
+};
+typedef struct nss_backend nss_backend_t;
+typedef int nss_dbop_t;
+
+#endif /* _HP_NSS_COMMON_H */