mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
35 lines
708 B
C#
35 lines
708 B
C#
|
|
using System;
|
||
|
|
/*
|
||
|
|
3.3.6. MG RDATA format (EXPERIMENTAL)
|
||
|
|
|
||
|
|
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
||
|
|
/ MGMNAME /
|
||
|
|
/ /
|
||
|
|
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
||
|
|
|
||
|
|
where:
|
||
|
|
|
||
|
|
MGMNAME A <domain-name> which specifies a mailbox which is a
|
||
|
|
member of the mail group specified by the domain name.
|
||
|
|
|
||
|
|
MG records cause no additional section processing.
|
||
|
|
*/
|
||
|
|
namespace Heijden.DNS
|
||
|
|
{
|
||
|
|
public class RecordMG : Record
|
||
|
|
{
|
||
|
|
public string MGMNAME;
|
||
|
|
|
||
|
|
public RecordMG(RecordReader rr)
|
||
|
|
{
|
||
|
|
MGMNAME = rr.ReadDomainName();
|
||
|
|
}
|
||
|
|
|
||
|
|
public override string ToString()
|
||
|
|
{
|
||
|
|
return MGMNAME;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|