200_ice_success_3.py 788 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=ice-ufrag:1234
  12. a=ice-pwd:5678
  13. a=rtpmap:0 PCMU/8000
  14. a=sendrecv
  15. a=rtpmap:101 telephone-event/8000
  16. a=fmtp:101 0-15
  17. a=candidate:XX 1 UDP 1234 127.0.0.1 4000 typ host
  18. a=candidate:YY 2 UDP 1234 127.0.0.1 4001 typ host
  19. """
  20. args = "--null-audio --use-ice --auto-answer 200 --max-calls 1"
  21. include = ["a=ice-ufrag", # must have ICE
  22. "a=candidate:[0-9a-zA-Z]+ 2 UDP" # must have RTCP component
  23. ]
  24. exclude = [
  25. "ice-mismatch" # must not mismatch
  26. ]
  27. sendto_cfg = sip.SendtoCfg( "caller sends two components without a=rtcp line",
  28. pjsua_args=args, sdp=sdp, resp_code=200,
  29. resp_inc=include, resp_exc=exclude)