pjsua_call_dump method

int pjsua_call_dump(
  1. int call_id,
  2. int with_media,
  3. Pointer<Char> buffer,
  4. int maxlen,
  5. Pointer<Char> indent,
)

Dump call and media statistics to string.

@param call_id Call identification. @param with_media Non-zero to include media information too. @param buffer Buffer where the statistics are to be written to. @param maxlen Maximum length of buffer. @param indent Spaces for left indentation.

@return PJ_SUCCESS on success.

Implementation

int pjsua_call_dump(
  int call_id,
  int with_media,
  ffi.Pointer<ffi.Char> buffer,
  int maxlen,
  ffi.Pointer<ffi.Char> indent,
) {
  return _pjsua_call_dump(
    call_id,
    with_media,
    buffer,
    maxlen,
    indent,
  );
}