Revision 29e5cbb4
Added by Phil Davis over 9 years ago
src/usr/local/www/xmlrpc.php | ||
---|---|---|
344 | 344 |
} |
345 | 345 |
|
346 | 346 |
/*****************************/ |
347 |
$merge_config_section_doc = gettext("XMLRPC wrapper for merging package sections. This method must be called with two parameters: a string containing the local system\'s password and an array to merge into the system\'s config. This function returns true upon completion.");
|
|
348 |
$merge_config_section_sig = array(
|
|
347 |
$merge_installedpackages_section_doc = gettext("XMLRPC wrapper for merging package sections. This method must be called with two parameters: a string containing the local system\'s password and an array to merge into the system\'s config. This function returns true upon completion.");
|
|
348 |
$merge_installedpackages_section_sig = array(
|
|
349 | 349 |
array( |
350 | 350 |
$XML_RPC_Boolean, |
351 | 351 |
$XML_RPC_String, |
... | ... | |
552 | 552 |
'signature' => $filter_configure_sig, |
553 | 553 |
'docstring' => $filter_configure_doc), |
554 | 554 |
'pfsense.interfaces_carp_configure' => array('function' => 'interfaces_carp_configure_xmlrpc', |
555 |
'docstring' => $carp_configure_sig), |
|
555 |
'signature' => $carp_configure_sig, |
|
556 |
'docstring' => $carp_configure_doc), |
|
556 | 557 |
'pfsense.backup_config_section' => array('function' => 'backup_config_section_xmlrpc', |
557 | 558 |
'signature' => $backup_config_section_sig, |
558 | 559 |
'docstring' => $backup_config_section_doc), |
... | ... | |
563 | 564 |
'signature' => $merge_config_section_sig, |
564 | 565 |
'docstring' => $merge_config_section_doc), |
565 | 566 |
'pfsense.merge_installedpackages_section_xmlrpc' => array('function' => 'merge_installedpackages_section_xmlrpc', |
566 |
'signature' => $merge_config_section_sig,
|
|
567 |
'docstring' => $merge_config_section_doc),
|
|
567 |
'signature' => $merge_installedpackages_section_sig,
|
|
568 |
'docstring' => $merge_installedpackages_section_doc),
|
|
568 | 569 |
'pfsense.host_firmware_version' => array('function' => 'pfsense_firmware_version_xmlrpc', |
569 | 570 |
'signature' => $pfsense_firmware_version_sig, |
570 |
'docstring' => $host_firmware_version_doc),
|
|
571 |
'docstring' => $pfsense_firmware_version_doc),
|
|
571 | 572 |
'pfsense.reboot' => array('function' => 'reboot_xmlrpc', |
572 | 573 |
'signature' => $reboot_sig, |
573 | 574 |
'docstring' => $reboot_doc), |
Also available in: Unified diff
xmlrpc signature and docstring
A few of the entries in this array had dodgy var references. I don't think anything would have caused an actual error.