1 /* entry.c - monitor backend entry handling routines */
3 * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
7 * Copyright 2001 The OpenLDAP Foundation, All Rights Reserved.
8 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
10 * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
12 * This work has beed deveolped for the OpenLDAP Foundation
13 * in the hope that it may be useful to the Open Source community,
14 * but WITHOUT ANY WARRANTY.
16 * Permission is granted to anyone to use this software for any purpose
17 * on any computer system, and to alter it and redistribute it, subject
18 * to the following restrictions:
20 * 1. The author and SysNet s.n.c. are not responsible for the consequences
21 * of use of this software, no matter how awful, even if they arise from
24 * 2. The origin of this software must not be misrepresented, either by
25 * explicit claim or by omission. Since few users ever read sources,
26 * credits should appear in the documentation.
28 * 3. Altered versions must be plainly marked as such, and must not be
29 * misrepresented as being the original software. Since few users
30 * ever read sources, credits should appear in the documentation.
31 * SysNet s.n.c. cannot be responsible for the consequences of the
34 * 4. This notice may not be removed or altered.
40 #include "back-monitor.h"
44 struct monitorinfo *mi,
48 struct monitorentrypriv *mp;
52 assert( e->e_private != NULL );
54 mp = ( struct monitorentrypriv * )e->e_private;
57 if ( mp->mp_info && mp->mp_info->mss_update ) {
58 return ( *mp->mp_info->mss_update )( mi, e );
66 struct monitorinfo *mi,
72 struct monitorentrypriv *mp;
75 assert( e_parent != NULL );
76 assert( e_parent->e_private != NULL );
79 mp = ( struct monitorentrypriv * )e_parent->e_private;
81 if ( mp->mp_info && mp->mp_info->mss_create ) {
82 return ( *mp->mp_info->mss_create )( mi, ndn, e_parent, ep );
89 monitor_entry_test_flags(
90 struct monitorentrypriv *mp,
96 return( ( mp->mp_flags & cond ) || ( mp->mp_info->mss_flags & cond ) );