HomeSort by: relevance | last modified time | path
    Searched defs:ludp (Results 1 - 14 of 14) sorted by relevancy

  /src/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/
map.c 90 LDAPURLDesc *ludp; local
92 rc = ldap_url_parse( a_vals[ i ].bv_val, &ludp );
102 if ( ludp->lud_scope == LDAP_SCOPE_BASE ) {
103 ludp->lud_scope = LDAP_SCOPE_DEFAULT;
106 ber_str2bv( ludp->lud_dn, 0, 0, &olddn );
114 ludp->lud_dn = dn.bv_val;
115 newurl = ldap_url_desc2str( ludp );
126 ludp->lud_dn = olddn.bv_val;
129 ldap_free_urldesc( ludp );
config.c 1886 LDAPURLDesc *ludp; local
1927 if ( ldap_url_parselist_ext( &ludp, uris[ j ], "\t",
1929 || ludp->lud_next != NULL )
1946 if ( ludp->lud_dn == NULL ) {
1952 ldap_free_urllist( ludp );
1961 ber_str2bv( ludp->lud_dn, 0, 0, &dn );
1969 ldap_free_urllist( ludp );
1975 ludp->lud_dn[ 0 ] = '\0';
1977 switch ( ludp->lud_scope ) {
1984 mt->mt_scope = ludp->lud_scope
    [all...]
  /src/external/bsd/openldap/dist/libraries/libldap/
test.c 293 LDAPURLDesc *ludp; local
599 if (( i = ldap_url_parse( line, &ludp )) != 0 ) {
603 if ( ludp->lud_host == NULL ) {
606 printf( "<%s>\n", ludp->lud_host );
609 if ( ludp->lud_port == 0 ) {
612 printf( "%d\n", ludp->lud_port );
614 printf( "\t dn: <%s>\n", ludp->lud_dn );
616 if ( ludp->lud_attrs == NULL ) {
619 for ( i = 0; ludp->lud_attrs[ i ] != NULL; ++i ) {
620 printf( " <%s>", ludp->lud_attrs[ i ] )
    [all...]
url.c 831 LDAPURLDesc *ludp; local
890 ludp = (LDAPURLDesc *)LDAP_CALLOC( 1, sizeof( LDAPURLDesc ));
892 if ( ludp == NULL ) {
897 ludp->lud_next = NULL;
898 ludp->lud_host = NULL;
899 ludp->lud_port = 0;
900 ludp->lud_dn = NULL;
901 ludp->lud_attrs = NULL;
902 ludp->lud_scope = ( flags & LDAP_PVT_URL_PARSE_NODEF_SCOPE ) ? LDAP_SCOPE_BASE : LDAP_SCOPE_DEFAULT;
903 ludp->lud_filter = NULL
1294 LDAPURLDesc *dest, *tail, *ludp, *newludp; local
1318 LDAPURLDesc *ludp; local
1371 LDAPURLDesc *ludp; local
1458 LDAPURLDesc *ludp; local
1502 LDAPURLDesc *ludp; local
1552 LDAPURLDesc *ludp, *next; local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-meta/
map.c 770 LDAPURLDesc *ludp; local
772 rc = ldap_url_parse( a_vals[ i ].bv_val, &ludp );
782 if ( ludp->lud_scope == LDAP_SCOPE_BASE ) {
783 ludp->lud_scope = LDAP_SCOPE_DEFAULT;
786 ber_str2bv( ludp->lud_dn, 0, 0, &olddn );
811 ludp->lud_dn = dn.bv_val;
812 newurl = ldap_url_desc2str( ludp );
824 ludp->lud_dn = olddn.bv_val;
829 ldap_free_urldesc( ludp );
config.c 1957 LDAPURLDesc *ludp; local
2008 if ( ldap_url_parselist_ext( &ludp, uris[ j ], "\t",
2010 || ludp->lud_next != NULL )
2027 if ( ludp->lud_dn == NULL ) {
2033 ldap_free_urllist( ludp );
2042 ber_str2bv( ludp->lud_dn, 0, 0, &dn );
2050 ldap_free_urllist( ludp );
2056 ludp->lud_dn[ 0 ] = '\0';
2058 switch ( ludp->lud_scope ) {
2065 mt->mt_scope = ludp->lud_scope
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/overlays/
rwmmap.c 935 LDAPURLDesc *ludp; local
938 rc = ldap_url_parse( oldval.bv_val, &ludp );
951 if ( ludp->lud_scope == LDAP_SCOPE_BASE ) {
952 ludp->lud_scope = LDAP_SCOPE_DEFAULT;
955 ber_str2bv( ludp->lud_dn, 0, 0, &olddn );
991 ludp->lud_dn = dn.bv_val;
992 newurl = ldap_url_desc2str( ludp );
993 ludp->lud_dn = olddn.bv_val;
1006 ludp->lud_dn = ndn.bv_val;
1007 newurl = ldap_url_desc2str( ludp );
1182 LDAPURLDesc *ludp; local
    [all...]
dynlist.c 471 LDAPURLDesc *ludp; local
484 ludp = dyn->dy_uris[i];
485 if ( ludp->lud_attrs )
487 o.o_req_dn.bv_val = ludp->lud_dn;
488 o.o_req_dn.bv_len = ludp->lud_port;
490 o.ors_scope = ludp->lud_scope;
491 o.ors_filter = (Filter *)ludp->lud_filter;
1182 LDAPURLDesc *ludp; local
1202 if (ldap_url_parse( a->a_vals[i].bv_val, &ludp ) != LDAP_URL_SUCCESS )
1204 if (( ludp->lud_host && *ludp->lud_host
1266 LDAPURLDesc *ludp; local
1479 LDAPURLDesc *ludp; local
1523 LDAPURLDesc *ludp; local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/
slapcommon.c 425 LDAPURLDesc *ludp; local
428 rc = ldap_url_parse_ext( optarg, &ludp,
436 if ( ldap_pvt_url_scheme2proto( ludp->lud_scheme ) != LDAP_PROTO_TCP ) {
442 if ( ludp->lud_host != NULL ) {
449 if ( ludp->lud_port != 0 ) {
456 if ( ludp->lud_attrs != NULL ) {
463 if ( ludp->lud_exts != NULL ) {
470 if ( ludp->lud_dn != NULL && ludp->lud_dn[0] != '\0' ) {
472 subtree = ludp->lud_dn
    [all...]
backend.c 1514 LDAPURLDesc *ludp; local
1527 if ( ldap_url_parse( a->a_vals[i].bv_val, &ludp ) !=
1536 if ( ( ludp->lud_host && *ludp->lud_host )
1537 || ludp->lud_attrs
1538 || ludp->lud_exts )
1543 ber_str2bv( ludp->lud_dn, 0, 0, &bv );
1550 switch ( ludp->lud_scope ) {
1580 if ( ludp->lud_filter != NULL && *ludp->lud_filter != '\0')
    [all...]
saslauthz.c 217 LDAPURLDesc *ludp = NULL; local
402 rc = ldap_url_parse( in->bv_val, &ludp );
412 if ( strcasecmp( ludp->lud_scheme, "ldap" ) != 0 ) {
427 ldap_free_urldesc( ludp );
437 if ( ( ludp->lud_host && *ludp->lud_host )
438 || ludp->lud_attrs || ludp->lud_exts )
447 if ( ludp->lud_filter ) {
448 Filter *f = str2filter( ludp->lud_filter )
478 LDAPURLDesc *ludp = NULL; local
932 LDAPURLDesc *ludp; local
    [all...]
acl.c 2171 LDAPURLDesc *ludp = NULL; local
2187 rc = ldap_url_parse( name->bv_val, &ludp );
2197 if ( ( ludp->lud_host && ludp->lud_host[0] ) || ludp->lud_exts )
2210 ber_str2bv( ludp->lud_dn, 0, 0, &op2.o_req_dn );
2217 cp->asc_op->o_log_prefix, ludp->lud_dn );
2233 if ( ludp->lud_filter ) {
2234 ber_str2bv_x( ludp->lud_filter, 0, 0, &op2.ors_filterstr,
2253 op2.ors_scope = ludp->lud_scope
    [all...]
  /src/external/bsd/openldap/dist/tests/progs/
slapd-bind.c 223 LDAPURLDesc *ludp = (LDAPURLDesc *)action; local
227 if ( ludp->lud_exts != NULL ) {
228 for ( i = 0; ludp->lud_exts[ i ] != NULL; i++ ) {
229 char *ext = ludp->lud_exts[ i ];
324 LDAPURLDesc *ludp = (LDAPURLDesc *)action; local
336 ludp->lud_dn, ludp->lud_scope,
337 ludp->lud_filter, ludp->lud_attrs, 0,
  /src/external/bsd/openldap/dist/clients/tools/
common.c 1211 LDAPURLDesc *ludlist, **ludp; local
1223 for ( ludp = &ludlist; *ludp != NULL; ) {
1224 LDAPURLDesc *lud = *ludp;
1323 *ludp = lud->lud_next;

Completed in 41 milliseconds