#pragma ident "%Z%%M% %I% %E% SMI"
/*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is Mozilla Communicator client code, released
* March 31, 1998.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*/
/*
* Copyright (c) 1993 The Regents of the University of Michigan.
* All rights reserved.
*/
/*
* cache.c - generic caching support for LDAP
*/
#include "ldap-int.h"
/*
* ldap_cache_flush - flush part of the LDAP cache. returns an
* ldap error code (LDAP_SUCCESS, LDAP_NO_SUCH_OBJECT, etc.).
*/
int
{
if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
return( LDAP_PARAM_ERROR );
}
dn = "";
}
}
/*
* nsldapi_add_result_to_cache - add an ldap entry we just read off the network
* to the ldap cache. this routine parses the ber for the entry and
* constructs the appropriate add request. this routine calls the
* cache add routine to actually add the entry.
*/
void
{
char *dn;
char *a;
m->lm_msgid, m->lm_msgtype, 0 );
if ( m->lm_msgtype != LDAP_RES_SEARCH_ENTRY ||
"<= nsldapi_add_result_to_cache not added\n", 0, 0, 0 );
return;
}
"<= nsldapi_add_result_to_cache malloc failed\n", 0, 0, 0 );
return;
}
if ( i == (max - 1) ) {
"<= nsldapi_add_result_to_cache realloc failed\n",
0, 0, 0 );
return;
}
}
"<= nsldapi_add_result_to_cache calloc failed\n",
0, 0, 0 );
return;
}
}
}
"<= nsldapi_add_result_to_cache error: failed to construct mod list (%s)\n",
ldap_err2string( rc ), 0, 0 );
return;
}
/* update special cachedtime attribute */
if ( i == (max - 1) ) {
max++;
"<= nsldapi_add_result_to_cache calloc failed\n",
0, 0, 0 );
return;
}
}
"<= nsldapi_add_result_to_cache calloc failed\n",
0, 0, 0 );
return;
}
/* msgid of -1 means don't send the result */
"<= nsldapi_add_result_to_cache added (rc %d)\n", rc, 0, 0 );
}