aboutsummaryrefslogtreecommitdiff
path: root/libs/libnet/dns.h
blob: d6673e63d3805dc05586a0f1e2cc416e7a5058b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// MIT License, Copyright (c) 2020 Marvin Borner

#ifndef DNS_H
#define DNS_H

#include <def.h>

#define DNS_NOERROR 0
#define DNS_FORMERR 1
#define DNS_SERVFAIL 2
#define DNS_NXDOMAIN 3
#define DNS_NOTIMP 4
#define DNS_REFUSED 5
#define DNS_YXDOMAIN 6
#define DNS_XRRSET 7
#define DNS_NOTAUTH 8
#define DNS_NOTZONE 9

u32 dns_request(const char *name);

#endif