mirror of https://github.com/dnomd343/ClearDNS
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
366 B
22 lines
366 B
#ifndef LOADER_H_
|
|
#define LOADER_H_
|
|
|
|
#include "config.h"
|
|
#include "adguard.h"
|
|
#include "dnsproxy.h"
|
|
#include "overture.h"
|
|
|
|
struct cleardns {
|
|
char **script;
|
|
dnsproxy *domestic;
|
|
dnsproxy *foreign;
|
|
overture *diverter;
|
|
adguard *filter;
|
|
assets_config *assets;
|
|
};
|
|
|
|
extern struct cleardns loader;
|
|
|
|
void load_config(const char *config_file);
|
|
|
|
#endif
|
|
|