X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Fftest.c;h=ea9f29e0824ba7dc941ba1afd92c1cc54add6214;hb=cdbbed6c3b6a4f0b69fab6e37c3a098ca5d12620;hp=6f9a227a18f503febf6aaf52dc594c0bdd0f4fe0;hpb=2931cec6c08946c579290695f27811c750834acf;p=openldap diff --git a/libraries/libldap/ftest.c b/libraries/libldap/ftest.c index 6f9a227a18..ea9f29e082 100644 --- a/libraries/libldap/ftest.c +++ b/libraries/libldap/ftest.c @@ -1,9 +1,18 @@ +/* ftest.c -- OpenLDAP Filter API Test */ /* $OpenLDAP$ */ -/* - * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. - * COPYING RESTRICTIONS APPLY, see COPYRIGHT file +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2005 The OpenLDAP Foundation. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in the file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . */ -/* OpenLDAP Filter API Test */ #include "portable.h" @@ -15,7 +24,8 @@ #include -#include "ldap-int.h" +#include "ldap_pvt.h" +#include "lber_pvt.h" #include "ldif.h" #include "lutil.h" @@ -27,19 +37,20 @@ static int filter2ber( char *filter ); int usage() { fprintf( stderr, "usage:\n" - "\tftest [-d n] filter\n" ); + " ftest [-d n] filter\n" + " filter - RFC 2254 string representation of an " + "LDAP search filter\n" ); return EXIT_FAILURE; } int main( int argc, char *argv[] ) { - int i; + int c; int debug=0; - char *filter=NULL; - while( (i = getopt( argc, argv, "Aa:Ss:" "d:" )) != EOF ) { - switch ( i ) { + while( (c = getopt( argc, argv, "d:" )) != EOF ) { + switch ( c ) { case 'd': debug = atoi( optarg ); break; @@ -65,10 +76,7 @@ main( int argc, char *argv[] ) } } - if( argc - optind > 1 ) { - return usage(); - - } else if ( argc - optind != 1 ) { + if ( argc - optind != 1 ) { return usage(); } @@ -78,7 +86,7 @@ main( int argc, char *argv[] ) static int filter2ber( char *filter ) { int rc; - struct berval *bv = NULL; + struct berval bv = BER_BVNULL; BerElement *ber; printf( "Filter: %s\n", filter ); @@ -89,23 +97,22 @@ static int filter2ber( char *filter ) return EXIT_FAILURE; } - rc = ldap_int_put_filter( ber, filter ); + rc = ldap_pvt_put_filter( ber, filter ); if( rc < 0 ) { fprintf( stderr, "Filter error!\n"); return EXIT_FAILURE; } - rc = ber_flatten( ber, &bv ); + rc = ber_flatten2( ber, &bv, 0 ); if( rc < 0 ) { - perror( "ber_flatten" ); + perror( "ber_flatten2" ); return EXIT_FAILURE; } - printf( "BER encoding (len=%ld):\n", (long) bv->bv_len ); - ber_bprint( bv->bv_val, bv->bv_len ); + printf( "BER encoding (len=%ld):\n", (long) bv.bv_len ); + ber_bprint( bv.bv_val, bv.bv_len ); - ber_free( ber, 0 ); - ber_bvfree( bv ); + ber_free( ber, 1 ); return EXIT_SUCCESS; }