~ubuntu-branches/ubuntu/raring/389-ds-base/raring

« back to all changes in this revision

Viewing changes to ldap/servers/slapd/slapi-private.h

  • Committer: Package Import Robot
  • Author(s): Timo Aaltonen
  • Date: 2013-02-06 18:06:31 UTC
  • mfrom: (11.1.1 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20130206180631-h6ldv3k506hmm46e
Tags: 1.3.0.2-0ubuntu2
debian/*: Fix time stamps due to clock skew (FTBFS).

Show diffs side-by-side

added added

removed removed

Lines of Context:
331
331
/* entry.c */
332
332
int entry_apply_mods( Slapi_Entry *e, LDAPMod **mods );
333
333
int is_type_protected(const char *type);
334
 
 
 
334
int entry_apply_mods_ignore_error( Slapi_Entry *e, LDAPMod **mods, int ignore_error );
335
335
int slapi_entries_diff(Slapi_Entry **old_entries, Slapi_Entry **new_entries, int testall, const char *logging_prestr, const int force_update, void *plg_id);
336
336
 
337
337
/* entrywsi.c */
384
384
Slapi_DN *slapi_sdn_init_normdn_passin(Slapi_DN *sdn, const char *dn);
385
385
char *slapi_dn_normalize_original( char *dn );
386
386
char *slapi_dn_normalize_case_original( char *dn );
 
387
void ndn_cache_init();
 
388
void ndn_cache_get_stats(PRUint64 *hits, PRUint64 *tries, size_t *size, size_t *max_size, long *count);
 
389
#define NDN_DEFAULT_SIZE 20971520 /* 20mb - size of normalized dn cache */
387
390
 
388
391
/* filter.c */
389
392
int filter_flag_is_set(const Slapi_Filter *f,unsigned char flag);
390
393
char *slapi_filter_to_string(const Slapi_Filter *f, char *buffer, size_t bufsize);
391
 
char *
392
 
slapi_filter_to_string_internal( const struct slapi_filter *f, char *buf, size_t *bufsize );
 
394
char *slapi_filter_to_string_internal( const struct slapi_filter *f, char *buf, size_t *bufsize );
393
395
 
394
396
/* operation.c */
395
397
 
1143
1145
#include <stdio.h> /* GGOODREPL - For BUFSIZ, below, gak */
1144
1146
const char* escape_string (const char* str, char buf[BUFSIZ]);
1145
1147
const char* escape_string_with_punctuation(const char* str, char buf[BUFSIZ]);
1146
 
const char* escape_filter_value(const char* str, int len, char buf[BUFSIZ]);
1147
1148
void strcpy_unescape_value( char *d, const char *s );
1148
1149
 
1149
1150
char *slapi_berval_get_string_copy(const struct berval *bval);
1247
1248
/* attrsyntax.c */
1248
1249
int slapi_add_internal_attr_syntax( const char *name, const char *oid, const char *syntax, const char *mr_equality, unsigned long extraflags );
1249
1250
 
 
1251
/* pw.c */
 
1252
void pw_exp_init ( void );
 
1253
int pw_copy_entry_ext(Slapi_Entry *src_e, Slapi_Entry *dest_e);
 
1254
 
 
1255
/* op_shared.c */
 
1256
void modify_update_last_modified_attr(Slapi_PBlock *pb, Slapi_Mods *smods);
 
1257
 
 
1258
/* add.c */
 
1259
void add_internal_modifiersname(Slapi_PBlock *pb, Slapi_Entry *e);
 
1260
 
1250
1261
#ifdef __cplusplus
1251
1262
}
1252
1263
#endif