Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
RCode.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
10 public enum RCode
11 {
15 NoError = 0,
16
20 FormErr = 1,
21
25 ServFail = 2,
26
30 NXDomain = 3,
31
35 NotImp = 4,
36
40 Refused = 5,
41
45 YXDomain = 6,
46
50 YXRRSet = 7,
51
55 NXRRSet = 8,
56
61 NotAuth = 9,
62
66 NotZone = 10,
67
71 DSOTYPENI = 11,
72
77 BADVERS = 16,
78
82 BADKEY = 17,
83
87 BADTIME = 18,
88
92 BADMODE = 19,
93
97 BADNAME = 20,
98
102 BADALG = 21,
103
107 BADTRUNC = 22,
108
112 BADCOOKIE = 23
113 }
114}
RCode
DNS Response Code
Definition: RCode.cs:11