Revision 44857365
Added by Lukas Wiest almost 7 years ago
src/etc/inc/dyndns.class | ||
---|---|---|
604 | 604 |
break; |
605 | 605 |
case 'freedns': |
606 | 606 |
case 'freedns-v6': |
607 |
$needIP = FALSE;
|
|
608 |
curl_setopt($ch, CURLOPT_URL, 'https://freedns.afraid.org/dynamic/update.php?' . $this->_dnsPass); |
|
607 |
$needIP = TRUE;
|
|
608 |
curl_setopt($ch, CURLOPT_URL, 'https://freedns.afraid.org/dynamic/update.php?' . $this->_dnsPass . '&address=' . $this->_dnsIP);
|
|
609 | 609 |
break; |
610 | 610 |
case 'dnsexit': |
611 | 611 |
$needsIP = TRUE; |
Also available in: Unified diff
enable ip send for FreeDNS DynDNS update
without this, only legacy IP records get updated correctly.
redmi ticket: https://redmine.pfsense.org/issues/8924