summaryrefslogtreecommitdiffstats
path: root/src/qtype.c
blob: 78aadcffb7c814bdb36e8b3094e3d722905d9a15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
 * Copyright 2019-2021 OARC, Inc.
 * Copyright 2017-2018 Akamai Technologies
 * Copyright 2006-2016 Nominum, Inc.
 * All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "config.h"

#include "qtype.h"

const perf_qtype_t qtype_table[] = {
    { "A", 1 },
    { "NS", 2 },
    { "MD", 3 },
    { "MF", 4 },
    { "CNAME", 5 },
    { "SOA", 6 },
    { "MB", 7 },
    { "MG", 8 },
    { "MR", 9 },
    { "NULL", 10 },
    { "WKS", 11 },
    { "PTR", 12 },
    { "HINFO", 13 },
    { "MINFO", 14 },
    { "MX", 15 },
    { "TXT", 16 },
    { "RP", 17 },
    { "AFSDB", 18 },
    { "X25", 19 },
    { "ISDN", 20 },
    { "RT", 21 },
    { "NSAP", 22 },
    { "NSAP-PTR", 23 },
    { "SIG", 24 },
    { "KEY", 25 },
    { "PX", 26 },
    { "GPOS", 27 },
    { "AAAA", 28 },
    { "LOC", 29 },
    { "NXT", 30 },
    { "EID", 31 },
    { "NIMLOC", 32 },
    { "SRV", 33 },
    { "ATMA", 34 },
    { "NAPTR", 35 },
    { "KX", 36 },
    { "CERT", 37 },
    { "A6", 38 },
    { "DNAME", 39 },
    { "SINK", 40 },
    { "OPT", 41 },
    { "APL", 42 },
    { "DS", 43 },
    { "SSHFP", 44 },
    { "IPSECKEY", 45 },
    { "RRSIG", 46 },
    { "NSEC", 47 },
    { "DNSKEY", 48 },
    { "DHCID", 49 },
    { "NSEC3", 50 },
    { "NSEC3PARAM", 51 },
    { "TLSA", 52 },
    { "SMIMEA", 53 },
    { "Unassigned", 54 },
    { "HIP", 55 },
    { "NINFO", 56 },
    { "RKEY", 57 },
    { "TALINK", 58 },
    { "CDS", 59 },
    { "CDNSKEY", 60 },
    { "OPENPGPKEY", 61 },
    { "CSYNC", 62 },
    { "ZONEMD", 63 },
    { "SVCB", 64 },
    { "HTTPS", 65 },
    { "SPF", 99 },
    { "UINFO", 100 },
    { "UID", 101 },
    { "GID", 102 },
    { "UNSPEC", 103 },
    { "NID", 104 },
    { "L32", 105 },
    { "L64", 106 },
    { "LP", 107 },
    { "EUI48", 108 },
    { "EUI64", 109 },
    { "TKEY", 249 },
    { "TSIG", 250 },
    { "IXFR", 251 },
    { "AXFR", 252 },
    { "MAILB", 253 },
    { "MAILA", 254 },
    { "*", 255 },
    { "URI", 256 },
    { "CAA", 257 },
    { "AVC", 258 },
    { "DOA", 259 },
    { "AMTRELAY", 260 },
    { "TA", 32768 },
    { "DLV", 32769 },
    { "Reserved", 65535 },
    { 0, 0 }
};