openldap/servers/slurpd/admin.c
Hallvard Furuseth 7e6ad5100c Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking.  Retyped a number of functions, usually
to return void.  Fixed a number of printf format errors.

API changes (in ldap/include):
  Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
  for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.

A number of `extern' declarations are left (some added by protoize), to
be cleaned away later.  Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-15 22:40:11 +00:00

44 lines
1.3 KiB
C

/*
* Copyright (c) 1996 Regents of the University of Michigan.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to the University of Michigan at Ann Arbor. The name of the University
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
*/
/*
* admin.c - routines for performing administrative tasks, e.g. on-the-fly
* reconfiguration of slurpd.
*/
#include "portable.h"
#include <stdio.h>
#include <ac/signal.h>
#include "slurp.h"
#include "globals.h"
/*
* Eventually, do_admin will be the entry point for performing
* administrative tasks. General idea: put commands in a file
* somewhere, send slurpd a USR2 signal. The handler for
* USR2 (this routine) reads the file and takes some action.
*
* For right now, this routine has been hijacked for debugging. When
* slurpd receives a USR2 signal, it will dump its replication
* queue to the disk file given by SLURPD_DUMPFILE.
*/
RETSIGTYPE
do_admin( int sig )
{
sglob->rq->rq_dump( sglob->rq );
(void) SIGNAL( SIGUSR2, do_admin );
}