DNS SRV Record support. Only supported with MS DNS Provider
This commit is contained in:
parent
a327e27e15
commit
452fcb7f47
28 changed files with 6890 additions and 4002 deletions
|
@ -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; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue