uas-cancel-no-final.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE scenario SYSTEM "sipp.dtd">
  3. <scenario name="Basic UAS responder">
  4. <recv request="INVITE" crlf="true">
  5. </recv>
  6. <send>
  7. <![CDATA[
  8. SIP/2.0 100 Trying
  9. [last_Via:]
  10. [last_From:]
  11. [last_To:]
  12. [last_Call-ID:]
  13. [last_CSeq:]
  14. Content-Length: 0
  15. ]]>
  16. </send>
  17. <send>
  18. <![CDATA[
  19. SIP/2.0 180 Ringing
  20. [last_Via:]
  21. [last_From:]
  22. [last_To:];tag=[call_number]
  23. [last_Call-ID:]
  24. [last_CSeq:]
  25. Contact: <sip:192.168.0.15>
  26. Content-Length: 0
  27. ]]>
  28. </send>
  29. <!-- Wait for CANCEL -->
  30. <recv request="CANCEL" crlf="true">
  31. </recv>
  32. <send>
  33. <![CDATA[
  34. SIP/2.0 200 OK
  35. [last_Via:]
  36. [last_From:]
  37. [last_To:]
  38. [last_Call-ID:]
  39. [last_CSeq:]
  40. Content-Length: 0
  41. ]]>
  42. </send>
  43. <!-- definition of the response time repartition table (unit is ms) -->
  44. <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
  45. <!-- definition of the call length repartition table (unit is ms) -->
  46. <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
  47. </scenario>