#ifndef ACLCONF_H
#define ACLCONF_H
#include <cx/list.h>
#include <cx/map.h>
#include "acl.h"
#include "../config/acl.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct acl_data {
CxMap *namedACLs;
} ACLData;
ACLData* acl_data_new();
ACLList* acl_get(ACLData *acldata,
const char *name);
#ifdef __cplusplus
}
#endif
#endif