Changes to update Tomato RAF.
[tomato.git] / release / src / router / dnscrypt / src / hostip / app.h
bloba113d2ea50ee14542986293571ed90713b3c3348
2 #ifndef __APP_H__
3 #define __APP_H__ 1
5 #include <event2/event.h>
7 typedef struct AppContext_ {
8 struct event_base *event_loop;
9 const char *host_name;
10 const char *resolver_ip;
11 _Bool want_ipv6;
12 } AppContext;
14 #endif