DNS SRV Record support. Only supported with MS DNS Provider

This commit is contained in:
robvde 2012-07-04 13:18:58 +04:00
parent a327e27e15
commit 452fcb7f47
28 changed files with 6890 additions and 4002 deletions

View file

@ -39,6 +39,10 @@ namespace WebsitePanel.Providers.DNS
private string recordData;
private int mxPriority;
private string recordText;
private int srvPriority;
private int srvWeight;
private int srvPort;
public string RecordName
{
@ -69,5 +73,25 @@ namespace WebsitePanel.Providers.DNS
get { return this.recordText; }
set { this.recordText = value; }
}
public int SrvPriority
{
get { return this.srvPriority; }
set { this.srvPriority = value; }
}
public int SrvWeight
{
get { return this.srvWeight; }
set { this.srvWeight = value; }
}
public int SrvPort
{
get { return this.srvPort; }
set { this.srvPort = value; }
}
}
}

View file

@ -40,6 +40,8 @@ namespace WebsitePanel.Providers.DNS
CNAME,
SOA,
TXT,
SRV,
Other
}
}