1998-08-09 08:43:13 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1990 Regents of the University of Michigan.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* addentry.c
|
|
|
|
*/
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
#ifndef lint
|
|
|
|
static char copyright[] = "@(#) Copyright (c) 1990 Regents of the University of Michigan.\nAll rights reserved.\n";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
#include <ac/ctype.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/time.h>
|
1998-08-09 08:43:13 +08:00
|
|
|
|
|
|
|
#include "lber.h"
|
|
|
|
#include "ldap.h"
|
|
|
|
|
|
|
|
LDAPMessage *
|
|
|
|
ldap_delete_result_entry( LDAPMessage **list, LDAPMessage *e )
|
|
|
|
{
|
|
|
|
LDAPMessage *tmp, *prev = NULL;
|
|
|
|
|
|
|
|
for ( tmp = *list; tmp != NULL && tmp != e; tmp = tmp->lm_chain )
|
|
|
|
prev = tmp;
|
|
|
|
|
|
|
|
if ( tmp == NULL )
|
|
|
|
return( NULL );
|
|
|
|
|
|
|
|
if ( prev == NULL )
|
|
|
|
*list = tmp->lm_chain;
|
|
|
|
else
|
|
|
|
prev->lm_chain = tmp->lm_chain;
|
|
|
|
tmp->lm_chain = NULL;
|
|
|
|
|
|
|
|
return( tmp );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ldap_add_result_entry( LDAPMessage **list, LDAPMessage *e )
|
|
|
|
{
|
|
|
|
e->lm_chain = *list;
|
|
|
|
*list = e;
|
|
|
|
}
|