Changeset 4306
- Timestamp:
- Dec 12, 2012 6:20:28 AM (12 years ago)
- Location:
- pjproject/trunk/pjsip/src/pjsua-lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
r4300 r4306 1030 1030 pjsua_call *call; 1031 1031 int call_id = -1; 1032 int sip_err_code ;1032 int sip_err_code = PJSIP_SC_INTERNAL_SERVER_ERROR; 1033 1033 pjmedia_sdp_session *offer=NULL; 1034 1034 pj_status_t status; -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
r4305 r4306 1516 1516 */ 1517 1517 1518 if (pjsua_get_state() != PJSUA_STATE_RUNNING) 1518 if (pjsua_get_state() != PJSUA_STATE_RUNNING) { 1519 if (sip_err_code) *sip_err_code = PJSIP_SC_SERVICE_UNAVAILABLE; 1519 1520 return PJ_EBUSY; 1521 } 1520 1522 1521 1523 if (async) {
Note: See TracChangeset
for help on using the changeset viewer.