pjsua_call_update method

int pjsua_call_update(
  1. int call_id,
  2. int options,
  3. Pointer<pjsua_msg_data> msg_data
)

Send UPDATE request.

@param call_id Call identification. @param options Bitmask of pjsua_call_flag constants. @param msg_data Optional message components to be sent with the request.

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

Implementation

int pjsua_call_update(
  int call_id,
  int options,
  ffi.Pointer<pjsua_msg_data> msg_data,
) {
  return _pjsua_call_update(
    call_id,
    options,
    msg_data,
  );
}