Changeset 5704
- Timestamp:
- Nov 27, 2017 8:37:37 AM (7 years ago)
- Location:
- pjproject/trunk/pjsip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/endpoint.hpp
r5703 r5704 467 467 * and the proxy configured in the account. 468 468 */ 469 StringVector outboundProx y;469 StringVector outboundProxies; 470 470 471 471 /** … … 504 504 * Default: FALSE 505 505 */ 506 507 506 bool stunTryIpv6; 508 507 -
pjproject/trunk/pjsip/src/pjsua2/endpoint.cpp
r5703 r5704 175 175 } 176 176 for (i=0; i<ua_cfg.outbound_proxy_cnt; ++i) { 177 this->outboundProx y.push_back(pj2Str(ua_cfg.outbound_proxy[i]));177 this->outboundProxies.push_back(pj2Str(ua_cfg.outbound_proxy[i])); 178 178 } 179 179 … … 209 209 pua_cfg.stun_srv_cnt = i; 210 210 211 for (i=0; i<this->outboundProx y.size() &&211 for (i=0; i<this->outboundProxies.size() && 212 212 i<PJ_ARRAY_SIZE(pua_cfg.outbound_proxy); ++i) 213 213 { 214 pua_cfg.outbound_proxy[i] = str2Pj(this->outboundProx y[i]);214 pua_cfg.outbound_proxy[i] = str2Pj(this->outboundProxies[i]); 215 215 } 216 216 pua_cfg.outbound_proxy_cnt= i;
Note: See TracChangeset
for help on using the changeset viewer.