upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/tests/unit/stubs/dns_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/stubs/dns_server.h')
-rw-r--r--tests/unit/stubs/dns_server.h11
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
7static inline void dns_server_set_client_authenticated(uint32_t ip, bool auth) {
8 (void)ip; (void)auth;
9}
10
11#endif