master.h revision 61e87c7e1e53a1fdd3680c7b1addd187282e1327
#ifndef __MASTER_H
#define __MASTER_H
struct client;
#include "../master/master-login-interface.h"
/* Notify master of a change in our state */
/* Close connection to master process */
void master_close(void);
/* inetd: Connect to existing master process, or create new one. */
int master_connect(const char *group_name);
void master_init(int fd);
void master_deinit(void);
#endif