Searched refs:ludp (Results 1 - 16 of 16) sorted by relevance

/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Durl.c798 LDAPURLDesc *ludp; local
853 ludp = (LDAPURLDesc *)LDAP_CALLOC( 1, sizeof( LDAPURLDesc ));
855 if ( ludp == NULL ) {
860 ludp->lud_next = NULL;
861 ludp->lud_host = NULL;
862 ludp->lud_port = 0;
863 ludp->lud_dn = NULL;
864 ludp->lud_attrs = NULL;
865 ludp->lud_scope = ( flags & LDAP_PVT_URL_PARSE_NODEF_SCOPE ) ? LDAP_SCOPE_BASE : LDAP_SCOPE_DEFAULT;
866 ludp
1257 LDAPURLDesc *dest, *tail, *ludp, *newludp; local
1281 LDAPURLDesc *ludp; local
1334 LDAPURLDesc *ludp; local
1418 LDAPURLDesc *ludp; local
1462 LDAPURLDesc *ludp; local
1512 LDAPURLDesc *ludp, *next; local
[all...]
H A Dtest.c288 LDAPURLDesc *ludp; local
594 if (( i = ldap_url_parse( line, &ludp )) != 0 ) {
598 if ( ludp->lud_host == NULL ) {
601 printf( "<%s>\n", ludp->lud_host );
604 if ( ludp->lud_port == 0 ) {
607 printf( "%d\n", ludp->lud_port );
609 printf( "\t dn: <%s>\n", ludp->lud_dn );
611 if ( ludp->lud_attrs == NULL ) {
614 for ( i = 0; ludp->lud_attrs[ i ] != NULL; ++i ) {
615 printf( " <%s>", ludp
[all...]
H A Dldap-int.h778 LDAPURLDesc *ludp ));
/macosx-10.10.1/apr-32/apr-util/apr-util/ldap/
H A Dapr_ldap_url.c264 apr_ldap_url_desc_t *ludp; local
311 ludp = (apr_ldap_url_desc_t *)apr_pcalloc(pool, sizeof(apr_ldap_url_desc_t));
312 if ( ludp == NULL ) {
318 ludp->lud_next = NULL;
319 ludp->lud_host = NULL;
320 ludp->lud_port = LDAP_PORT;
321 ludp->lud_dn = NULL;
322 ludp->lud_attrs = NULL;
323 ludp->lud_filter = NULL;
324 ludp
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dldap.c97 LDAPURLDesc **ludp);
98 static void _ldap_free_urldesc (LDAPURLDesc *ludp);
176 LDAPURLDesc *ludp = NULL; local
201 rc = ldap_url_parse(data->change.url, &ludp);
203 rc = _ldap_url_parse(conn, &ludp);
377 rc = ldap_search_s(server, ludp->lud_dn, ludp->lud_scope,
378 ludp->lud_filter, ludp->lud_attrs, 0, &result);
466 if(ludp)
546 unescape_elements(void *data, LDAPURLDesc *ludp) argument
590 _ldap_url_parse2(const struct connectdata *conn, LDAPURLDesc *ludp) argument
678 LDAPURLDesc *ludp = calloc(1, sizeof(*ludp)); local
694 _ldap_free_urldesc(LDAPURLDesc *ludp) argument
[all...]
H A Dopenldap.c349 LDAPURLDesc *ludp = NULL; local
357 rc = ldap_url_parse(data->change.url, &ludp);
370 rc = ldap_search_ext(li->ld, ludp->lud_dn, ludp->lud_scope,
371 ludp->lud_filter, ludp->lud_attrs, 0,
373 ldap_free_urldesc(ludp);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dsaslauthz.c212 LDAPURLDesc *ludp = NULL; local
397 rc = ldap_url_parse( in->bv_val, &ludp );
407 if ( strcasecmp( ludp->lud_scheme, "ldap" ) != 0 ) {
422 ldap_free_urldesc( ludp );
432 if ( ( ludp->lud_host && *ludp->lud_host )
433 || ludp->lud_attrs || ludp->lud_exts )
442 if ( ludp->lud_filter ) {
443 Filter *f = str2filter( ludp
470 LDAPURLDesc *ludp = NULL; local
921 LDAPURLDesc *ludp; local
[all...]
H A Dslapcommon.c409 LDAPURLDesc *ludp; local
412 rc = ldap_url_parse_ext( optarg, &ludp,
419 if ( ldap_pvt_url_scheme2proto( ludp->lud_scheme ) != LDAP_PROTO_TCP ) {
423 if ( ludp->lud_host != NULL ) {
427 if ( ludp->lud_port != 0 ) {
431 if ( ludp->lud_attrs != NULL ) {
435 if ( ludp->lud_exts != NULL ) {
439 if ( ludp->lud_dn != NULL && ludp->lud_dn[0] != '\0' ) {
440 subtree = ludp
[all...]
H A Dbackend.c1437 LDAPURLDesc *ludp; local
1450 if ( ldap_url_parse( a->a_vals[i].bv_val, &ludp ) !=
1459 if ( ( ludp->lud_host && *ludp->lud_host )
1460 || ludp->lud_attrs
1461 || ludp->lud_exts )
1466 ber_str2bv( ludp->lud_dn, 0, 0, &bv );
1473 switch ( ludp->lud_scope ) {
1503 if ( ludp->lud_filter != NULL && ludp
[all...]
H A Dacl.c2168 LDAPURLDesc *ludp = NULL; local
2184 rc = ldap_url_parse( name->bv_val, &ludp );
2194 if ( ( ludp->lud_host && ludp->lud_host[0] ) || ludp->lud_exts )
2207 ber_str2bv( ludp->lud_dn, 0, 0, &op2.o_req_dn );
2214 cp->asc_op->o_log_prefix, ludp->lud_dn, 0 );
2230 if ( ludp->lud_filter ) {
2231 ber_str2bv_x( ludp->lud_filter, 0, 0, &op2.ors_filterstr,
2250 op2.ors_scope = ludp
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/tests/progs/
H A Dslapd-bind.c287 LDAPURLDesc *ludp = (LDAPURLDesc *)action; local
291 if ( ludp->lud_exts != NULL ) {
292 for ( i = 0; ludp->lud_exts[ i ] != NULL; i++ ) {
293 char *ext = ludp->lud_exts[ i ];
367 LDAPURLDesc *ludp = (LDAPURLDesc *)action; local
379 ludp->lud_dn, ludp->lud_scope,
380 ludp->lud_filter, ludp->lud_attrs, 0,
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/overlays/
H A Drwmmap.c927 LDAPURLDesc *ludp; local
930 rc = ldap_url_parse( oldval.bv_val, &ludp );
943 if ( ludp->lud_scope == LDAP_SCOPE_BASE ) {
944 ludp->lud_scope = LDAP_SCOPE_DEFAULT;
947 ber_str2bv( ludp->lud_dn, 0, 0, &olddn );
983 ludp->lud_dn = dn.bv_val;
984 newurl = ldap_url_desc2str( ludp );
985 ludp->lud_dn = olddn.bv_val;
998 ludp->lud_dn = ndn.bv_val;
999 newurl = ldap_url_desc2str( ludp );
1174 LDAPURLDesc *ludp; local
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-meta/
H A Dconfig.c417 LDAPURLDesc *ludp; local
509 if ( ldap_url_parselist_ext( &ludp, uris[ c ], "\t",
511 || ludp->lud_next != NULL )
526 if ( ludp->lud_dn == NULL ) {
531 ldap_free_urllist( ludp );
539 ber_str2bv( ludp->lud_dn, 0, 0, &dn );
546 ldap_free_urllist( ludp );
551 ludp->lud_dn[ 0 ] = '\0';
553 switch ( ludp->lud_scope ) {
560 mt->mt_scope = ludp
[all...]
H A Dmap.c718 LDAPURLDesc *ludp; local
720 rc = ldap_url_parse( a_vals[ i ].bv_val, &ludp );
730 if ( ludp->lud_scope == LDAP_SCOPE_BASE ) {
731 ludp->lud_scope = LDAP_SCOPE_DEFAULT;
734 ber_str2bv( ludp->lud_dn, 0, 0, &olddn );
759 ludp->lud_dn = dn.bv_val;
760 newurl = ldap_url_desc2str( ludp );
772 ludp->lud_dn = olddn.bv_val;
777 ldap_free_urldesc( ludp );
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/clients/tools/
H A Dcommon.c1187 LDAPURLDesc *ludlist, **ludp; local
1199 for ( ludp = &ludlist; *ludp != NULL; ) {
1200 LDAPURLDesc *lud = *ludp;
1299 *ludp = lud->lud_next;
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/include/
H A Dldap.h2067 LDAPURLDesc *ludp ));
2071 LDAPURLDesc *ludp ));

Completed in 122 milliseconds