331_srtp_prefer_rtp_avp.py 757 B

12345678910111213141516171819202122232425262728
  1. import inc_sip as sip
  2. import inc_sdp as sdp
  3. # When SRTP is NOT enabled in pjsua, it should prefer to use
  4. # RTP/AVP media line if there are multiple m=audio lines
  5. sdp = \
  6. """
  7. v=0
  8. o=- 0 0 IN IP4 127.0.0.1
  9. s=-
  10. c=IN IP4 127.0.0.1
  11. t=0 0
  12. m=audio 5000 RTP/SAVP 0
  13. a=crypto:1 aes_cm_128_hmac_sha1_80 inline:WnD7c1ksDGs+dIefCEo8omPg4uO8DYIinNGL5yxQ
  14. m=audio 4000 RTP/AVP 0
  15. """
  16. pjsua_args = "--null-audio --auto-answer 200 --use-srtp 0"
  17. extra_headers = ""
  18. include = ["Content-Type: application/sdp", # response must include SDP
  19. "m=audio 0 RTP/SAVP[\\s\\S]+m=audio [1-9]+[0-9]* RTP/AVP"
  20. ]
  21. exclude = ["a=crypto"]
  22. sendto_cfg = sip.SendtoCfg("Prefer RTP/SAVP", pjsua_args, sdp, 200,
  23. extra_headers=extra_headers,
  24. resp_inc=include, resp_exc=exclude)