容器化的无污染DNS服务
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.
 
 
 
 
 

24 lines
626 B

#ifndef _DNSPROXY_H_
#define _DNSPROXY_H_
#include "process.h"
typedef struct {
int port;
int cache;
int debug; // bool value
int verify; // bool value
int parallel; // bool value
int optimistic; // bool value
char **bootstrap;
char **fallback;
char **primary;
} dnsproxy;
dnsproxy* dnsproxy_init(int port);
void dnsproxy_add_primary(dnsproxy *info, const char *server);
void dnsproxy_add_fallback(dnsproxy *info, const char *server);
void dnsproxy_add_bootstrap(dnsproxy *info, const char *server);
process* dnsproxy_load(const char *caption, dnsproxy *info, const char *file);
#endif