openldap/libraries/libldap/addentry.c

73 lines
1.5 KiB
C
Raw Normal View History

2003-11-26 15:16:36 +08:00
/* addentry.c */
/* $OpenLDAP$ */
2003-11-26 15:16:36 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2014-01-25 21:21:25 +08:00
* Copyright 1998-2014 The OpenLDAP Foundation.
2003-11-26 15:16:36 +08:00
* All rights reserved.
1998-08-09 08:43:13 +08:00
*
2003-11-26 15:16:36 +08:00
* 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
* <http://www.OpenLDAP.org/license.html>.
*/
/* Portions Copyright (c) 1990 Regents of the University of Michigan.
* All rights reserved.
1998-08-09 08:43:13 +08:00
*/
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
1999-06-03 08:37:44 +08:00
#include <ac/stdlib.h>
1998-10-25 09:41:42 +08:00
#include <ac/socket.h>
#include <ac/string.h>
#include <ac/time.h>
1998-08-09 08:43:13 +08:00
#include "ldap-int.h"
1998-08-09 08:43:13 +08:00
LDAPMessage *
ldap_delete_result_entry( LDAPMessage **list, LDAPMessage *e )
{
LDAPMessage *tmp, *prev = NULL;
1999-06-22 06:38:00 +08:00
assert( list != NULL );
assert( e != NULL );
1998-08-09 08:43:13 +08:00
for ( tmp = *list; tmp != NULL && tmp != e; tmp = tmp->lm_chain )
prev = tmp;
if ( tmp == NULL )
return( NULL );
if ( prev == NULL ) {
if ( tmp->lm_chain )
tmp->lm_chain->lm_chain_tail = (*list)->lm_chain_tail;
1998-08-09 08:43:13 +08:00
*list = tmp->lm_chain;
} else {
1998-08-09 08:43:13 +08:00
prev->lm_chain = tmp->lm_chain;
if ( prev->lm_chain == NULL )
(*list)->lm_chain_tail = prev;
}
1998-08-09 08:43:13 +08:00
tmp->lm_chain = NULL;
return( tmp );
}
void
ldap_add_result_entry( LDAPMessage **list, LDAPMessage *e )
{
1999-06-22 06:38:00 +08:00
assert( list != NULL );
assert( e != NULL );
1998-08-09 08:43:13 +08:00
e->lm_chain = *list;
2007-07-21 05:28:04 +08:00
if ( *list )
e->lm_chain_tail = (*list)->lm_chain_tail;
else
e->lm_chain_tail = e;
1998-08-09 08:43:13 +08:00
*list = e;
}