2001-10-09 20:56:24 -06:00
|
|
|
#ifndef REPL_FAILSAFE_H
|
|
|
|
#define REPL_FAILSAFE_H
|
|
|
|
|
|
|
|
typedef enum {RPL_AUTH_MASTER=0,RPL_ACTIVE_SLAVE,RPL_IDLE_SLAVE,
|
|
|
|
RPL_LOST_SOLDIER,RPL_TROOP_SOLDIER,
|
2001-10-11 13:54:06 -06:00
|
|
|
RPL_RECOVERY_CAPTAIN,RPL_NULL /* inactive */,
|
|
|
|
RPL_ANY /* wild card used by change_rpl_status */ } RPL_STATUS;
|
2001-10-09 20:56:24 -06:00
|
|
|
extern RPL_STATUS rpl_status;
|
|
|
|
|
|
|
|
extern pthread_mutex_t LOCK_rpl_status;
|
|
|
|
extern pthread_cond_t COND_rpl_status;
|
|
|
|
extern TYPELIB rpl_role_typelib, rpl_status_typelib;
|
2001-10-10 15:36:35 -06:00
|
|
|
extern const char* rpl_role_type[], *rpl_status_type[];
|
2001-10-11 13:54:06 -06:00
|
|
|
|
|
|
|
void change_rpl_status(RPL_STATUS from_status, RPL_STATUS to_status);
|
2001-10-09 20:56:24 -06:00
|
|
|
#endif
|