122_sdp_with_unknown_dynamic_2.py 582 B

1234567891011121314151617181920212223242526
  1. import inc_sip as sip
  2. import inc_sdp as sdp
  3. sdp = \
  4. """
  5. v=0
  6. o=- 0 0 IN IP4 127.0.0.1
  7. s=-
  8. c=IN IP4 127.0.0.1
  9. t=0 0
  10. m=xapplicationx 4000 RTP/AVP 100
  11. a=rtpmap:100 myapp/80000
  12. m=audio 5000 RTP/AVP 0
  13. """
  14. pjsua_args = "--null-audio --auto-answer 200"
  15. extra_headers = ""
  16. include = ["Content-Type: application/sdp", # response must include SDP
  17. "m=xapplicationx 0 RTP/AVP[\\s\\S]+m=audio [1-9]+[0-9]* RTP/AVP"
  18. ]
  19. exclude = []
  20. sendto_cfg = sip.SendtoCfg("Mixed audio and unknown", pjsua_args, sdp, 200,
  21. extra_headers=extra_headers,
  22. resp_inc=include, resp_exc=exclude)