mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
36 lines
723 B
C#
36 lines
723 B
C#
|
|
using System;
|
||
|
|
/*
|
||
|
|
3.3.3. MB RDATA format (EXPERIMENTAL)
|
||
|
|
|
||
|
|
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
||
|
|
/ MADNAME /
|
||
|
|
/ /
|
||
|
|
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
|
||
|
|
|
||
|
|
where:
|
||
|
|
|
||
|
|
MADNAME A <domain-name> which specifies a host which has the
|
||
|
|
specified mailbox.
|
||
|
|
|
||
|
|
MB records cause additional section processing which looks up an A type
|
||
|
|
RRs corresponding to MADNAME.
|
||
|
|
*/
|
||
|
|
namespace Heijden.DNS
|
||
|
|
{
|
||
|
|
public class RecordMB : Record
|
||
|
|
{
|
||
|
|
public string MADNAME;
|
||
|
|
|
||
|
|
public RecordMB(RecordReader rr)
|
||
|
|
{
|
||
|
|
MADNAME = rr.ReadDomainName();
|
||
|
|
}
|
||
|
|
|
||
|
|
public override string ToString()
|
||
|
|
{
|
||
|
|
return MADNAME;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|