Codebase list dillo / cdd52a27-e41e-4336-9e36-ead857ff4384/main src / domain.h
cdd52a27-e41e-4336-9e36-ead857ff4384/main

Tree @cdd52a27-e41e-4336-9e36-ead857ff4384/main (Download .tar.gz)

domain.h @cdd52a27-e41e-4336-9e36-ead857ff4384/mainraw · history · blame

#ifndef __DOMAIN_H__
#define __DOMAIN_H__

#ifdef __cplusplus
extern "C" {
#endif

#include <stdio.h>
#include "url.h"

void a_Domain_parse(FILE *fp);
void a_Domain_freeall(void);
bool_t a_Domain_permit(const DilloUrl *source, const DilloUrl *dest);

#ifdef __cplusplus
}
#endif

#endif