Adding upstream version 2.4.2+debian.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
0fae05cfb7
commit
153471ed4b
64 changed files with 9668 additions and 0 deletions
117
src/qtype.c
Normal file
117
src/qtype.c
Normal file
|
@ -0,0 +1,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 }
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue