summaryrefslogtreecommitdiffstats
path: root/src/disp-nis.h
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-06-30 11:56:23 -0400
committerNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-06-30 11:56:23 -0400
commit1b8a08a0f0bb956bcdd0dd92e19c9a7c5a1fbe02 (patch)
tree0b9a659f54d0cd4525575fb1a6395091741bbbeb /src/disp-nis.h
parentfb1a1a4523009eea9b22d98f8937009ea9378ece (diff)
downloadslapi-nis-1b8a08a0f0bb956bcdd0dd92e19c9a7c5a1fbe02.tar.gz
slapi-nis-1b8a08a0f0bb956bcdd0dd92e19c9a7c5a1fbe02.tar.xz
slapi-nis-1b8a08a0f0bb956bcdd0dd92e19c9a7c5a1fbe02.zip
- rename dispatch to disp-nis
Diffstat (limited to 'src/disp-nis.h')
-rw-r--r--src/disp-nis.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/disp-nis.h b/src/disp-nis.h
new file mode 100644
index 0000000..67bd547
--- /dev/null
+++ b/src/disp-nis.h
@@ -0,0 +1,38 @@
+/*
+ * Copyright 2008 Red Hat, Inc.
+ *
+ * This Program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This Program 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this Program; if not, write to the
+ *
+ * Free Software Foundation, Inc.
+ * 59 Temple Place, Suite 330
+ * Boston, MA 02111-1307 USA
+ *
+ */
+
+#ifndef disp_nis_h
+#define disp_nis_h
+struct plugin_state;
+struct wrapped_thread;
+struct dispatch_client_data;
+void *dispatch_thread(struct wrapped_thread *t);
+typedef bool_t (dispatch_reply_fragment)(struct plugin_state *state,
+ struct dispatch_client_data *cdata,
+ struct rpc_msg *reply, XDR *reply_xdrs,
+ bool_t first_fragment,
+ bool_t last_fragment);
+typedef void (dispatch_reply)(struct plugin_state *state,
+ struct dispatch_client_data *cdata,
+ struct rpc_msg *reply, XDR *reply_xdrs);
+void dispatch_securenets_clear(struct plugin_state *state);
+void dispatch_securenets_add(struct plugin_state *state, const char *value);
+#endif