Changeset 2081
- Timestamp:
- Jun 27, 2008 9:59:15 PM (16 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 21 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/test-pjsua
- Property svn:ignore
-
old new 2 2 *log 3 3 p*.txt 4 logs
-
- Property svn:ignore
-
pjproject/trunk/pjsip-apps/src/test-pjsua/scripts-sendto/151_err_sdp_video.py
r2066 r2081 15 15 pjsua_args = "--null-audio --auto-answer 200" 16 16 extra_headers = "" 17 include = ["Content-Type: application/sdp", # response must include SDP 18 "m=audio"] 17 include = [] 19 18 exclude = [] 20 19 -
pjproject/trunk/pjsip-apps/src/test-pjsua/scripts-sendto/153_err_sdp_unsupported_codec.py
r2066 r2081 16 16 pjsua_args = "--null-audio --auto-answer 200" 17 17 extra_headers = "" 18 include = ["Content-Type: application/sdp", # response must include SDP 19 "m=audio"] 18 include = [] 20 19 exclude = [] 21 20 -
pjproject/trunk/pjsip-apps/src/test-pjsua/scripts-sendto/158_err_sdp_bad_transport_type.py
r2066 r2081 21 21 include = [] 22 22 exclude = [] 23 sendto_cfg = sip.SendtoCfg("Unsupported transport type", pjsua_args, sdp, 4 06,23 sendto_cfg = sip.SendtoCfg("Unsupported transport type", pjsua_args, sdp, 488, 24 24 extra_headers=extra_headers, 25 25 resp_inc=include, resp_exc=exclude) -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
r2079 r2081 977 977 /* Reject offer if we couldn't find a good m=audio line in offer */ 978 978 if (call->audio_idx < 0) { 979 if (sip_err_code) *sip_err_code = PJSIP_SC_NOT_ACCEPTABLE ;979 if (sip_err_code) *sip_err_code = PJSIP_SC_NOT_ACCEPTABLE_HERE; 980 980 pjsua_media_channel_deinit(call_id); 981 return PJSIP_ERRNO_FROM_SIP_STATUS(PJSIP_SC_NOT_ACCEPTABLE );981 return PJSIP_ERRNO_FROM_SIP_STATUS(PJSIP_SC_NOT_ACCEPTABLE_HERE); 982 982 } 983 983
Note: See TracChangeset
for help on using the changeset viewer.