function xmlrpc_errno in Drupal 4
Same name and namespace in other branches
- 5 includes/xmlrpc.inc \xmlrpc_errno()
- 6 includes/xmlrpc.inc \xmlrpc_errno()
- 7 includes/xmlrpc.inc \xmlrpc_errno()
Returns the last XML-RPC client error number
2 calls to xmlrpc_errno()
- drupal_auth in modules/
drupal.module - Implementation of hook_auth().
- drupal_notify in modules/
drupal.module - Sends a ping to the Drupal directory server.
File
- includes/
xmlrpc.inc, line 464
Code
function xmlrpc_errno() {
$error = xmlrpc_error();
return $error->code;
}