]> git.sur5r.net Git - openldap/blob - servers/slurpd/admin.c
Directory rule is didn't work... use brute force
[openldap] / servers / slurpd / admin.c
1 /*
2  * Copyright (c) 1996 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 /*
14  * admin.c - routines for performing administrative tasks, e.g. on-the-fly
15  * reconfiguration of slurpd.
16  */
17
18
19 #include <stdio.h>
20 #include <signal.h>
21
22 #include "slurp.h"
23 #include "globals.h"
24
25
26 /*
27  * Eventually, do_admin will be the entry point for performing
28  * administrative tasks.  General idea: put commands in a file
29  * somewhere, send slurpd a USR2 signal.  The handler for
30  * USR2 (this routine) reads the file and takes some action.
31  *
32  * For right now, this routine has been hijacked for debugging.  When
33  * slurpd receives a USR2 signal, it will dump its replication 
34  * queue to the disk file given by SLURPD_DUMPFILE.
35  */
36 void
37 do_admin()
38 {
39     sglob->rq->rq_dump( sglob->rq );
40     (void) SIGNAL( SIGUSR2, (void *) do_admin );
41 }