uac-prack-sdp-decline.py 440 B

1234567891011121314151617
  1. # $Id$
  2. #
  3. import inc_const as const
  4. PJSUA = ["--null-audio --max-calls=1 --use-100rel"]
  5. PJSUA_EXPECTS = [[0, const.EVENT_INCOMING_CALL, "a"],
  6. [0, "", "183"],
  7. [0, "Response msg 200/PRACK", ""],
  8. [0, const.STATE_DISCONNECTED, ""]
  9. ]
  10. PJSUA_CLI_EXPECTS = [[0, const.EVENT_INCOMING_CALL, "call answer 183"],
  11. [0, "Response msg 200/PRACK", ""],
  12. [0, "Content-Type: application/sdp", ""],
  13. [0, const.STATE_DISCONNECTED, ""]
  14. ]