Changeset 3251
- Timestamp:
- Aug 6, 2010 1:03:33 AM (14 years ago)
- Location:
- pjproject/trunk/tests/pjsua
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/tests/pjsua/inc_sip.py
r3243 r3251 176 176 continue 177 177 try: 178 msg, src_addr = self.sock.recvfrom( 2048)178 msg, src_addr = self.sock.recvfrom(4096) 179 179 except: 180 180 print "recv() exception: ", sys.exc_info()[0] -
pjproject/trunk/tests/pjsua/scripts-sendto/330_srtp_prefer_rtp_savp.py
r2081 r3251 14 14 m=audio 4000 RTP/AVP 0 15 15 a=rtpmap:0 pcmu/8000 16 m=audio 5000 RTP/SAVP 016 m=audio 4000 RTP/SAVP 0 17 17 a=crypto:1 aes_cm_128_hmac_sha1_80 inline:WnD7c1ksDGs+dIefCEo8omPg4uO8DYIinNGL5yxQ 18 18 """ … … 21 21 extra_headers = "" 22 22 include = ["Content-Type: application/sdp", # response must include SDP 23 "m=audio 0 RTP/AVP[\\s\\S]+ a=rtpmap:0[\\s\\S]+m=audio [1-9]+[0-9]* RTP/SAVP[\\s\\S]+a=crypto"23 "m=audio 0 RTP/AVP[\\s\\S]+m=audio [1-9]+[0-9]* RTP/SAVP[\\s\\S]+a=crypto" 24 24 ] 25 25 exclude = []
Note: See TracChangeset
for help on using the changeset viewer.