]> git.sur5r.net Git - openldap/blobdiff - include/rewrite.h
Fix multiple NAME example
[openldap] / include / rewrite.h
index 1c74f073e4afd31178a127f8a5f35f07c24a3b5f..08398420c05c4c0e3bdbfd950c31000605373a75 100644 (file)
@@ -17,7 +17,7 @@
  * 3. Altered versions must be plainly marked as such, and must not be
  * misrepresented as being the original software.  Since few users
  * ever read sources, credits should appear in the documentation.
- * 
+ *
  * 4. This notice may not be removed or altered.
  *
  ******************************************************************************/
@@ -25,8 +25,6 @@
 #ifndef REWRITE_H
 #define REWRITE_H
 
-LDAP_BEGIN_DECL
-
 /*
  * Default rewrite context
  */
@@ -49,7 +47,7 @@ LDAP_BEGIN_DECL
 /*
  * Rewrite modes (input values for rewrite_info_init); determine the
  * behavior in case a null or non existent context is required:
- * 
+ *
  *     REWRITE_MODE_ERR                error
  *     REWRITE_MODE_OK                 no error but no rewrite
  *     REWRITE_MODE_COPY_INPUT         a copy of the input is returned
@@ -62,7 +60,7 @@ LDAP_BEGIN_DECL
 
 /*
  * Rewrite status returns
- * 
+ *
  *     REWRITE_REGEXEC_OK              success (result may be empty in case
  *                                     of no match)
  *     REWRITE_REGEXEC_ERR             error (internal error,
@@ -83,6 +81,8 @@ struct rewrite_info;
 
 struct berval; /* avoid include */
 
+LDAP_BEGIN_DECL
+
 /*
  * Inits the info
  */
@@ -120,6 +120,15 @@ rewrite_parse(
                 char **argv
 );
 
+/*
+ * process a config file that was already opened. Uses rewrite_parse.
+ */
+LDAP_REWRITE_F (int)
+rewrite_read(
+               FILE *fin,
+               struct rewrite_info *info
+);
+
 /*
  * Rewrites a string according to context.
  * If the engine is off, OK is returned, but the return string will be NULL.
@@ -130,8 +139,8 @@ rewrite_parse(
  *
  * What to do in case of non-existing rewrite context is still an issue.
  * Four possibilities:
- *      - error, 
- *      - ok with NULL result, 
+ *      - error,
+ *      - ok with NULL result,
  *      - ok with copy of string as result,
  *      - use the default rewrite context.
  */
@@ -209,7 +218,7 @@ rewrite_param_get(
                 struct berval *value
 );
 
-/* 
+/*
  * Destroys the parameter tree
  */
 LDAP_REWRITE_F (int)