openldap/servers/slurpd/globals.h

94 lines
3.1 KiB
C
Raw Normal View History

/* $OpenLDAP$ */
2003-11-27 02:19:00 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2006-01-04 07:11:52 +08:00
* Copyright 1998-2006 The OpenLDAP Foundation.
2003-11-27 02:19:00 +08:00
* All rights reserved.
*
* 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 file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
2001-01-21 01:49:05 +08:00
*/
2003-11-27 02:19:00 +08:00
/* Portions Copyright (c) 1996 Regents of the University of Michigan.
1998-08-09 08:43:13 +08:00
* 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.
*/
2003-11-27 02:19:00 +08:00
/* ACKNOWLEDGEMENTS:
* This work was originally developed by the University of Michigan
* (as part of U-MICH LDAP).
*/
1998-08-09 08:43:13 +08:00
1998-10-25 09:41:42 +08:00
#ifndef SLURPD_GLOBALS_H
#define SLURPD_GLOBALS_H 1
1998-08-09 08:43:13 +08:00
/*
* globals.h - definition of structure holding global data.
*/
#include "slurp.h"
1998-10-25 09:41:42 +08:00
LDAP_BEGIN_DECL
1998-08-09 08:43:13 +08:00
typedef struct globals {
/* Thread ID for file manager thread */
ldap_pvt_thread_t fm_tid;
/* pipe/socket used to wake manager from signal handler */
int wake_sds[2];
1998-08-09 08:43:13 +08:00
/* The name of the slapd config file (which is also our config file) */
char *slapd_configfile;
/* How long the master slurpd sleeps when there's no work to do */
int no_work_interval;
/* We keep running until slurpd_shutdown is nonzero. HUP signal set this */
sig_atomic_t slurpd_shutdown;
1998-08-09 08:43:13 +08:00
/* Number of replicas we're servicing */
int num_replicas;
/* Array of pointers to replica info */
Ri **replicas;
/* Directory where our replica files are written/read */
char *slurpd_rdir;
/* Name of slurpd status file (timestamp of last replog */
char slurpd_status_file[ MAXPATHLEN ];
/* Name of the replication log slapd is writing (and we are reading) */
char slapd_replogfile[ MAXPATHLEN ];
/* Name of local copy of replogfile we maintain */
char slurpd_replogfile[ MAXPATHLEN ];
/* Non-zero if we were given a replog file to process on command-line */
int one_shot_mode;
/* Non-zero if we should not detach the process */
int no_detach;
1998-08-09 08:43:13 +08:00
/* Name of program */
char *myname;
2003-03-03 19:47:16 +08:00
/* NT service name */
char *serverName;
1998-08-09 08:43:13 +08:00
/* Current offset into slurpd replica logfile */
off_t srpos;
/* mutex to serialize access to reject file */
ldap_pvt_thread_mutex_t rej_mutex;
1998-08-09 08:43:13 +08:00
/* pointer to status struct */
St *st;
/* Pointer to replication queue */
Rq *rq;
#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
1998-08-09 08:43:13 +08:00
/* Default name of kerberos srvtab file */
char *default_srvtab;
#endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
/* Non-zero if we shall print the version */
int version;
1998-08-09 08:43:13 +08:00
} Globals;
extern Globals *sglob;
1998-10-25 09:41:42 +08:00
LDAP_END_DECL
#endif /* SLURPD_GLOBALS_H */