pjsua_conf_remove_port method

int pjsua_conf_remove_port(
  1. int port_id
)

Remove arbitrary slot from the conference bridge. Application should only call this function if it registered the port manually with previous call to #pjsua_conf_add_port().

@param port_id The slot id of the port to be removed.

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

Implementation

int pjsua_conf_remove_port(
  int port_id,
) {
  return _pjsua_conf_remove_port(
    port_id,
  );
}