pjsua_acc_del method

int pjsua_acc_del(
  1. int acc_id
)

Delete an account. This will unregister the account from the SIP server, if necessary, and terminate server side presence subscriptions associated with this account.

@param acc_id Id of the account to be deleted.

@return PJ_SUCCESS on success, or the appropriate error code.

Implementation

int pjsua_acc_del(
  int acc_id,
) {
  return _pjsua_acc_del(
    acc_id,
  );
}