200_ice_success_2.py 805 B

12345678910111213141516171819202122232425262728293031323334
  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 192.168.0.4 4382 typ host
  20. """
  21. args = "--null-audio --use-ice --auto-answer 200 --max-calls 1"
  22. include = ["a=ice-ufrag", # must have ICE
  23. "a=candidate:[0-9a-zA-Z]+ 2 UDP" # must have RTCP component
  24. ]
  25. exclude = [
  26. "ice-mismatch" # must not mismatch
  27. ]
  28. sendto_cfg = sip.SendtoCfg( "caller sends only one component",
  29. pjsua_args=args, sdp=sdp, resp_code=200,
  30. resp_inc=include, resp_exc=exclude)