diff options
Diffstat (limited to 'tests/unit/stubs/dns_server.h')
| -rw-r--r-- | tests/unit/stubs/dns_server.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/unit/stubs/dns_server.h b/tests/unit/stubs/dns_server.h new file mode 100644 index 0000000..0a9450b --- /dev/null +++ b/tests/unit/stubs/dns_server.h | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | #ifndef STUBS_DNS_SERVER_H | ||
| 2 | #define STUBS_DNS_SERVER_H | ||
| 3 | |||
| 4 | #include <stdint.h> | ||
| 5 | #include <stdbool.h> | ||
| 6 | |||
| 7 | static inline void dns_server_set_client_authenticated(uint32_t ip, bool auth) { | ||
| 8 | (void)ip; (void)auth; | ||
| 9 | } | ||
| 10 | |||
| 11 | #endif | ||