common.h revision c62704c56e9c46214723cda6ca73e4c985f75e4b
#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 {
};
enum {
};
extern struct hash_table *pids;
#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