mirror of
https://github.com/netchx/netch.git
synced 2026-03-30 19:09:48 +08:00
18 lines
282 B
C#
18 lines
282 B
C#
namespace DNS.Protocol
|
|
{
|
|
public enum ResponseCode
|
|
{
|
|
NoError = 0,
|
|
FormatError,
|
|
ServerFailure,
|
|
NameError,
|
|
NotImplemented,
|
|
Refused,
|
|
YXDomain,
|
|
YXRRSet,
|
|
NXRRSet,
|
|
NotAuth,
|
|
NotZone,
|
|
}
|
|
}
|