125_sdp_with_multi_audio_0.py 736 B

12345678910111213141516171819202122232425262728
  1. import inc_sip as sip
  2. import inc_sdp as sdp
  3. # Multiple good m=audio lines! The current algorithm in pjsua-lib will
  4. # select the first audio (note that in 1.x it will select the last audio)
  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/AVP 0
  13. m=audio 4000 RTP/AVP 0
  14. m=audio 3000 RTP/AVP 0
  15. """
  16. pjsua_args = "--null-audio --auto-answer 200"
  17. extra_headers = ""
  18. include = ["Content-Type: application/sdp", # response must include SDP
  19. "m=audio [1-9]+[0-9]* RTP/AVP[\\s\\S]+m=audio 0 RTP/AVP[\\s\\S]+m=audio 0 RTP/AVP"
  20. ]
  21. exclude = []
  22. sendto_cfg = sip.SendtoCfg("Mutiple good m=audio lines", pjsua_args, sdp, 200,
  23. extra_headers=extra_headers,
  24. resp_inc=include, resp_exc=exclude)