You are here

function xmlrpc_errno in Drupal 5

Same name and namespace in other branches
  1. 4 includes/xmlrpc.inc \xmlrpc_errno()
  2. 6 includes/xmlrpc.inc \xmlrpc_errno()
  3. 7 includes/xmlrpc.inc \xmlrpc_errno()

Returns the last XML-RPC client error number

2 calls to xmlrpc_errno()
drupal_auth in modules/drupal/drupal.module
Implementation of hook_auth().
drupal_notify in modules/drupal/drupal.module
Sends a ping to the Drupal directory server.

File

includes/xmlrpc.inc, line 469

Code

function xmlrpc_errno() {
  $error = xmlrpc_error();
  return $error->code;
}