pjsua_ice_config_dup method
void
pjsua_ice_config_dup(
- Pointer<
pj_pool_t> pool, - Pointer<
pjsua_ice_config> dst, - Pointer<
pjsua_ice_config> src
Clone. If the \a pool argument is NULL, a simple memcpy() will be used.
@param pool Memory to duplicate strings. @param dst Destination config. @param src Source config.
Implementation
void pjsua_ice_config_dup(
ffi.Pointer<pj_pool_t> pool,
ffi.Pointer<pjsua_ice_config> dst,
ffi.Pointer<pjsua_ice_config> src,
) {
return _pjsua_ice_config_dup(
pool,
dst,
src,
);
}