common.h revision 6b005a6c3e96a03be8e5183f857f028063f384f5
#ifndef __COMMON_H
#define __COMMON_H
struct ip_addr;
#include "lib.h"
#include "hash.h"
#include "master-settings.h"
enum process_type {
};
extern struct hash_table *pids;
extern int null_fd, inetd_login_fd;
extern uid_t master_uid;
extern const char *process_names[];
#define IS_INETD() \
(inetd_login_fd != -1)
/* processes */
#define PID_GET_PROCESS_TYPE(pid) \
#define PID_REMOVE_PROCESS_TYPE(pid) \
void child_process_init_env(void);
/* misc */
#define VALIDATE_STR(str) \
#endif