summaryrefslogtreecommitdiffstats
path: root/etc/inc/voucher.inc
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2013-02-06 20:01:42 +0000
committerErmal <eri@pfsense.org>2013-02-06 20:01:42 +0000
commit89ad93905228adf3c0e7a7960efc43cc3f0d5286 (patch)
tree9e06cc1486c0bfd0ff4f22e7be0dbc68117a1156 /etc/inc/voucher.inc
parentd06b30eaf66753e1324e4432c4d4b7b89e2cd4f5 (diff)
downloadpfsense-89ad93905228adf3c0e7a7960efc43cc3f0d5286.zip
pfsense-89ad93905228adf3c0e7a7960efc43cc3f0d5286.tar.gz
Actually let xmlrpc construct the url internally from the passed info it is doing same checks
Diffstat (limited to 'etc/inc/voucher.inc')
-rw-r--r--etc/inc/voucher.inc12
1 files changed, 3 insertions, 9 deletions
diff --git a/etc/inc/voucher.inc b/etc/inc/voucher.inc
index adc9488..17ff4bb 100644
--- a/etc/inc/voucher.inc
+++ b/etc/inc/voucher.inc
@@ -42,10 +42,8 @@ function xmlrpc_sync_voucher_expire($vouchers, $syncip, $port, $password, $usern
require_once("xmlrpc.inc");
if ($port == "443")
$url = "https://{$syncip}";
- else if ($port == "80")
- $url = "http://{$syncip}";
else
- $url = "http://{$syncip}:{$port}";
+ $url = "http://{$syncip}";
/* Construct code that is run on remote machine */
$method = 'pfsense.exec_php';
@@ -91,10 +89,8 @@ function xmlrpc_sync_voucher_disconnect($dbent, $syncip, $port, $password, $user
require_once("xmlrpc.inc");
if ($port == "443")
$url = "https://{$syncip}";
- else if ($port == "80")
- $url = "http://{$syncip}";
else
- $url = "http://{$syncip}:{$port}";
+ $url = "http://{$syncip}";
/* Construct code that is run on remote machine */
$tmp_stop_time = (isset($stop_time)) ? $stop_time : "null";
@@ -145,10 +141,8 @@ function xmlrpc_sync_used_voucher($voucher_received, $syncip, $port, $password,
require_once("xmlrpc.inc");
if ($port == "443")
$url = "https://{$syncip}";
- else if ($port == "80")
- $url = "http://{$syncip}";
else
- $url = "http://{$syncip}:{$port}";
+ $url = "http://{$syncip}";
/* Construct code that is run on remote machine */
$method = 'pfsense.exec_php';
OpenPOWER on IntegriCloud