common.h revision fc60e984083286229bf908fbadb896882f85dc6c
#ifndef __COMMON_H
#define __COMMON_H
struct ip_addr;
#include "lib.h"
#include "hash.h"
#include "settings.h"
#include "../auth/auth-master-interface.h"
enum {
};
enum {
};
extern struct hash_table *pids;
/* processes */
#define PID_GET_PROCESS_TYPE(pid) \
#define PID_REMOVE_PROCESS_TYPE(pid) \
void clean_child_process(void);
/* misc */
#define VALIDATE_STR(str) \
#endif