200_ice_success_4.py 834 B

123456789101112131415161718192021222324252627282930313233
  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. a=candidate:YY 2 UDP 1234 127.0.0.2 4002 typ host
  20. """
  21. args = "--null-audio --use-ice --auto-answer 200 --max-calls 1 --ice-no-rtcp"
  22. include = ["a=ice-ufrag"] # must have ICE
  23. exclude = [
  24. "ice-mismatch", # must not mismatch
  25. "a=candidate:[0-9a-zA-Z]+ 2 UDP" # must not have RTCP component
  26. ]
  27. sendto_cfg = sip.SendtoCfg( "pjsua with --ice-no-rtcp ignores RTCP things in the SDP",
  28. pjsua_args=args, sdp=sdp, resp_code=200,
  29. resp_inc=include, resp_exc=exclude)