- Timestamp:
- Sep 23, 2013 5:03:24 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/pjsua2/pjsip/src/pjsua2/endpoint.cpp
r4597 r4598 132 132 Endpoint &ep = Endpoint::instance(); 133 133 134 if (!ep.epCallback || !res)134 if (!ep.epCallback) 135 135 return; 136 136 … … 169 169 pj_status_t status; 170 170 171 ua_cfg = prmEpConfig.uaConfig.toPj sip();172 log_cfg = prmEpConfig.logConfig.toPj sip();173 med_cfg = prmEpConfig.medConfig.toPj sip();171 ua_cfg = prmEpConfig.uaConfig.toPj(); 172 log_cfg = prmEpConfig.logConfig.toPj(); 173 med_cfg = prmEpConfig.medConfig.toPj(); 174 174 175 175 /* Setup log callback */ … … 372 372 pj_status_t status; 373 373 374 tcfg = cfg.toPj sip();374 tcfg = cfg.toPj(); 375 375 status = pjsua_transport_create(type, &tcfg, &tid); 376 376 PJSUA2_CHECK_RAISE_ERROR("Endpoint::transportCreate()", status);
Note: See TracChangeset
for help on using the changeset viewer.