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.
|
|
|
#ifndef DNSPROXY_H_
|
|
|
|
#define DNSPROXY_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "process.h"
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint16_t port;
|
|
|
|
uint32_t cache;
|
|
|
|
uint8_t debug; // bool value
|
|
|
|
uint8_t verify; // bool value
|
|
|
|
uint8_t parallel; // bool value
|
|
|
|
uint8_t optimistic; // bool value
|
|
|
|
char **bootstrap;
|
|
|
|
char **fallback;
|
|
|
|
char **primary;
|
|
|
|
} dnsproxy;
|
|
|
|
|
|
|
|
void dnsproxy_free(dnsproxy *info);
|
|
|
|
dnsproxy* dnsproxy_init(uint16_t port);
|
|
|
|
process* dnsproxy_load(const char *caption, dnsproxy *info, const char *file);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
#endif
|