mirror of
https://github.com/netchx/netch.git
synced 2026-04-01 19:15:09 +08:00
13 lines
183 B
C#
13 lines
183 B
C#
namespace DNS.Protocol
|
|
{
|
|
public enum OperationCode
|
|
{
|
|
Query = 0,
|
|
IQuery,
|
|
Status,
|
|
// Reserved = 3
|
|
Notify = 4,
|
|
Update,
|
|
}
|
|
}
|