summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-10-22 19:41:03 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-10-22 19:41:03 +0000
commite24b26e9f125eb62ff878137df58bb1671c6002b (patch)
tree477c987e795ef765297b79c9a4712d062c5bcab4 /etc
parent3d56587f51cbc4dbb0fdca22924555252bab2d9d (diff)
downloadpfsense-e24b26e9f125eb62ff878137df58bb1671c6002b.zip
pfsense-e24b26e9f125eb62ff878137df58bb1671c6002b.tar.gz
MFC 7055
Rework a number of items to make the code more readable.
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/dyndns.class75
1 files changed, 26 insertions, 49 deletions
diff --git a/etc/inc/dyndns.class b/etc/inc/dyndns.class
index 49d025f..f39aae1 100644
--- a/etc/inc/dyndns.class
+++ b/etc/inc/dyndns.class
@@ -38,10 +38,10 @@
* ODS - Last Tested: 02 August 2005
* +====================================================+
*
- * @author E.Kristensen
+ * @author E.Kristensen
* @link http://www.idylldesigns.com/projects/phpdns/
* @version 0.8
- * @updated 13 October 05 at 21:02:42 GMT
+ * @updated 13 October 05 at 21:02:42 GMT
*
*/
@@ -464,19 +464,16 @@
function _detectChange() {
$currentTime = time();
- #$wan_if = get_real_wan_interface();
- #$wan_ip = find_interface_ip($wan_if);
$wan_ip = get_current_wan_address();
$this->_dnsIP = $wan_ip;
if (file_exists($this->_cacheFile)) {
- $file = fopen($this->_cacheFile, 'r');
- $contents = fread($file, filesize($this->_cacheFile));
- fclose($file);
+ if(file_exists($this->_cacheFile))
+ $contents = file_get_contents($this->_cacheFile);
+ else
+ $contents = "";
list($cacheIP,$cacheTime) = split(':', $contents);
-
$this->_debug($cacheIP.'/'.$cacheTime);
-
$initial = false;
} else {
$file = fopen($this->_cacheFile, 'w');
@@ -484,55 +481,35 @@
fclose($file);
$cacheIP = '0.0.0.0';
$cacheTime = $currentTime;
-
$initial = true;
}
- switch ($this->_dnsService) {
- case 'dyndns':
- $time = '2419200';
- break;
- case 'dyndns-static':
- $time = '2419200';
- break;
- case 'dyndns-custom':
- $time = '2419200';
- break;
- case 'dhs':
- $time = '2419200';
- break;
- case 'easydns':
- $time = '2419200';
- break;
- case 'noip':
- $time = '2419200';
- break;
- case 'hn':
- $time = '2419200';
- break;
- case 'zoneedit':
- $time = '2419200';
- break;
- case 'dyns':
- $time = '2419200';
- break;
- case 'ods':
- $time = '2419200';
- break;
- }
+ /* use 2419200 for dyndns, dhs, easydns, noip, hn
+ * zoneedit, dyns, ods
+ */
+ $time = '2419200';
- /* If IP addresses are different or 28 days have passed update record */
- if ( ($cacheIP != $wan_ip) || ( ($currentTime - $cacheTime) > $time ) || ($initial == true) ) {
+ $needs_updating = FALSE;
+ /* lets deterimine if the item needs updating */
+ if ($cacheIP != $wan_ip)
+ $needs_updating = TRUE;
+ if ($currentTime - $cacheTime) > $time )
+ $needs_updating = TRUE;
+ if ($initial == TRUE)
+ $needs_updating = TRUE;
+
+ /* finally if we need updating then store the
+ new cache value and return true */
+ if($needs_updating == TRUE) {
/* Write WAN IP to cache file */
$file = fopen($this->_cacheFile, 'w');
fwrite($file, $wan_ip.':'.$currentTime);
- fclose($file);
-
+ fclose($file);
return TRUE;
} else {
-
- return FALSE;
+ return FALSE;
}
+
}
@@ -551,4 +528,4 @@
}
-?> \ No newline at end of file
+?>
OpenPOWER on IntegriCloud