blob: 0a9450b1a432946e702aee08239224c0febfcfd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef STUBS_DNS_SERVER_H
#define STUBS_DNS_SERVER_H
#include <stdint.h>
#include <stdbool.h>
static inline void dns_server_set_client_authenticated(uint32_t ip, bool auth) {
(void)ip; (void)auth;
}
#endif
|