common.h revision 3d512ea91533687d5ba2c0f8a16049ac311f72ed
#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[];
extern char ssl_manual_key_password[];
#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