201_ice_mismatch_3.py 621 B

1234567891011121314151617181920212223242526272829
  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=pjmedia
  8. c=IN IP4 127.0.0.1
  9. t=0 0
  10. m=audio 4000 RTP/AVP 0 101
  11. a=rtcp:4382 IN IP4 192.168.0.4
  12. a=ice-ufrag:1234
  13. a=ice-pwd:5678
  14. a=rtpmap:0 PCMU/8000
  15. a=sendrecv
  16. a=rtpmap:101 telephone-event/8000
  17. a=fmtp:101 0-15
  18. a=candidate:XX 1 UDP 1234 127.0.0.1 4000 typ host
  19. """
  20. args = "--null-audio --use-ice --auto-answer 200 --max-calls 1"
  21. include = ["a=ice-mismatch"]
  22. exclude = []
  23. sendto_cfg = sip.SendtoCfg( "caller sends mismatched offer for comp 2",
  24. pjsua_args=args, sdp=sdp, resp_code=200,
  25. resp_inc=include, resp_exc=exclude)