common.h revision 54a6d29d96e243cd5c84892384c18c9830359ada
#ifndef __COMMON_H
#define __COMMON_H
struct ip_addr;
#include "lib.h"
#include "hash.h"
#include "master-settings.h"
#include "../auth/auth-master-interface.h"
enum {
};
extern struct hash_table *pids;
extern int null_fd, inetd_login_fd;
extern uid_t master_uid;
#define IS_INETD() \
(inetd_login_fd != -1)
/* processes */
#define PID_GET_PROCESS_TYPE(pid) \
#define PID_REMOVE_PROCESS_TYPE(pid) \
/* misc */
#define VALIDATE_STR(str) \
#endif