]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/operational.c
Happy new year
[openldap] / servers / slapd / back-monitor / operational.c
1 /* operational.c - monitor backend operational attributes function */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2001-2004 The OpenLDAP Foundation.
6  * Portions Copyright 2001-2003 Pierangelo Masarati.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by Pierangelo Masarati for inclusion
19  * in OpenLDAP Software.
20  */
21
22 #include "portable.h"
23
24 #include <stdio.h>
25
26 #include <ac/string.h>
27 #include <ac/socket.h>
28
29 #include "slap.h"
30 #include "back-monitor.h"
31 #include "proto-back-monitor.h"
32
33 /*
34  * sets the supported operational attributes (if required)
35  */
36
37 int
38 monitor_back_operational(
39         Operation       *op,
40         SlapReply       *rs,
41         int             opattrs,
42         Attribute       **a )
43 {
44         Attribute       **aa = a;
45
46         assert( rs->sr_entry );
47
48         if ( opattrs || ad_inlist( slap_schema.si_ad_hasSubordinates,
49                                 rs->sr_attrs ) ) {
50                 int                     hs;
51                 struct monitorentrypriv *mp;
52
53                 mp = ( struct monitorentrypriv * )rs->sr_entry->e_private;
54
55                 assert( mp );
56
57                 hs = MONITOR_HAS_CHILDREN( mp );
58                 *aa = slap_operational_hasSubordinate( hs );
59                 if ( *aa != NULL ) {
60                         aa = &(*aa)->a_next;
61                 }
62         }
63         
64         return 0;
65 }
66