]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-shell/shell.h
Import op -> slap_op , conn -> slap_conn change from rel eng 1.1.
[openldap] / servers / slapd / back-shell / shell.h
index 5ef493c0458ac4e7b4c9304156ed74f629d79341..200515e42b1b20787c228a3fa2af6ec43a3ae917 100644 (file)
@@ -1,5 +1,12 @@
 /* shell.h - shell backend header file */
 
+#ifndef SLAPD_SHELL_H
+#define SLAPD_SHELL_H
+
+#include <ldap_cdefs.h>
+
+LDAP_BEGIN_DECL
+
 struct shellinfo {
        char    **si_bind;      /* cmd + args to exec for bind    */
        char    **si_unbind;    /* cmd + args to exec for unbind  */
@@ -11,3 +18,16 @@ struct shellinfo {
        char    **si_delete;    /* cmd + args to exec for delete  */
        char    **si_abandon;   /* cmd + args to exec for abandon */
 };
+
+struct backend;
+struct slap_conn;
+struct slap_op;
+extern int forkandexec LDAP_P((char **args, FILE **rfp, FILE **wfp));
+extern void print_suffixes LDAP_P((FILE *fp, struct backend *be));
+extern int read_and_send_results LDAP_P((struct backend *be,
+       struct slap_conn *conn, struct slap_op *op,
+       FILE *fp, char **attrs, int attrsonly));
+
+LDAP_END_DECL
+
+#endif