pjsua_call_dump method
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,
);
}