mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
dns/dyndns: fix unreachable HTTPS for dyns.cx; closes #1462
This commit is contained in:
+1
-2
@@ -1,6 +1,5 @@
|
||||
PLUGIN_NAME= dyndns
|
||||
PLUGIN_VERSION= 1.16
|
||||
PLUGIN_REVISION= 1
|
||||
PLUGIN_VERSION= 1.17
|
||||
PLUGIN_COMMENT= Dynamic DNS Support
|
||||
PLUGIN_MAINTAINER= franco@opnsense.org
|
||||
|
||||
|
||||
@@ -473,8 +473,9 @@ class updatedns
|
||||
curl_setopt($ch, CURLOPT_URL, "{$server}{$port}?host=" .$this->_dnsHost);
|
||||
break;
|
||||
case 'dyns':
|
||||
$server = "https://www.dyns.cx/postscript011.php";
|
||||
$port = "";
|
||||
/* XXX HTTPS is currently broken for them */
|
||||
$server = 'http://www.dyns.cx/postscript011.php';
|
||||
$port = '';
|
||||
if ($this->_dnsServer) {
|
||||
$server = $this->_dnsServer;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user