Allocate non-code memory using mono_domain_alloc0 in mono_create_jit_trampoline_from_...
[mono.git] / mcs / class / System / Mono.Dns / DnsQType.cs
1 //
2 // Mono.Dns.DnsQType
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo.mono@gmail.com)
6 //
7 // Copyright 2011 Gonzalo Paniagua Javier
8 //
9 // Licensed under the Apache License, Version 2.0 (the "License");
10 // you may not use this file except in compliance with the License.
11 // You may obtain a copy of the License at
12 //
13 // http://www.apache.org/licenses/LICENSE-2.0
14 //
15 // Unless required by applicable law or agreed to in writing, software
16 // distributed under the License is distributed on an "AS IS" BASIS,
17 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 // See the License for the specific language governing permissions and
19 // limitations under the License.
20 //
21 using System;
22 namespace Mono.Dns {
23         enum DnsQType : ushort {
24                 A             =         1,
25                 NS            =         2,
26                 [Obsolete] MD            =         3,
27                 [Obsolete] MF            =         4,
28                 CNAME         =         5,
29                 SOA           =         6,
30                 [Obsolete] MB            =         7,
31                 [Obsolete] MG            =         8,
32                 [Obsolete] MR            =         9,
33                 [Obsolete] NULL          =        10,
34                 [Obsolete] WKS           =        11,
35                 PTR           =        12,
36                 [Obsolete] HINFO         =        13,
37                 [Obsolete] MINFO         =        14,
38                 MX            =        15,
39                 TXT           =        16,
40                 [Obsolete] RP            =        17,
41                 AFSDB         =        18,
42                 [Obsolete] X25           =        19,
43                 [Obsolete] ISDN          =        20,
44                 [Obsolete] RT            =        21,
45                 [Obsolete] NSAP          =        22,
46                 [Obsolete] NSAPPTR       =        23,
47                 SIG           =        24,
48                 KEY           =        25,
49                 [Obsolete] PX            =        26,
50                 [Obsolete] GPOS          =        27,
51                 AAAA          =        28,
52                 LOC           =        29,
53                 [Obsolete] NXT           =        30,
54                 [Obsolete] EID           =        31,
55                 [Obsolete] NIMLOC        =        32,
56                 SRV           =        33,
57                 [Obsolete] ATMA          =        34,
58                 NAPTR         =        35,
59                 KX            =        36,
60                 CERT          =        37,
61                 [Obsolete] A6            =        38,
62                 DNAME         =        39,
63                 [Obsolete] SINK          =        40,
64                 OPT           =        41,
65                 [Obsolete] APL           =        42,
66                 DS            =        43,
67                 SSHFP         =        44,
68                 IPSECKEY      =        45,
69                 RRSIG         =        46,
70                 NSEC          =        47,
71                 DNSKEY        =        48,
72                 DHCID         =        49,
73                 NSEC3         =        50,
74                 NSEC3PARAM    =        51,
75                 HIP           =        55,
76                 NINFO         =        56,
77                 RKEY          =        57,
78                 TALINK        =        58,
79                 SPF           =        99,
80                 [Obsolete] UINFO         =       100,
81                 [Obsolete] UID           =       101,
82                 [Obsolete] GID           =       102,
83                 [Obsolete] UNSPEC        =       103,
84                 TKEY          =       249,
85                 TSIG          =       250,
86                 IXFR          =       251,
87                 AXFR          =       252,
88                 [Obsolete] MAILB         =       253,
89                 [Obsolete] MAILA         =       254,
90                 ALL           =       255,
91                 URI           =       256,
92                 TA            =     32768,
93                 DLV           =     32769,
94         }
95 }
96