Re #2059 (misc): Add missing fields when exporting UaConfig to pjsua_config.

Thanks to Imad Khazali for the report.



git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@5817 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Sauw Ming 2018-07-03 03:23:05 +00:00
parent 39062b691e
commit 5e4bb6aac1
1 changed files with 2 additions and 0 deletions

View File

@ -217,6 +217,8 @@ pjsua_config UaConfig::toPj() const
pua_cfg.nat_type_in_sdp = this->natTypeInSdp;
pua_cfg.enable_unsolicited_mwi = this->mwiUnsolicitedEnabled;
pua_cfg.stun_try_ipv6 = this->stunTryIpv6;
pua_cfg.stun_ignore_failure = this->stunIgnoreFailure;
return pua_cfg;
}