mrcp_uas_reject 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE scenario SYSTEM "sipp.dtd">
  3. <scenario name="MRCP Rejected Offer UAS">
  4. <!-- By adding rrs="true" (Record Route Sets), the route sets -->
  5. <!-- are saved and used for following messages sent. Useful to test -->
  6. <!-- against stateful SIP proxies/B2BUAs. -->
  7. <recv request="INVITE" crlf="true">
  8. </recv>
  9. <!-- The '[last_*]' keyword is replaced automatically by the -->
  10. <!-- specified header if it was present in the last message received -->
  11. <!-- (except if it was a retransmission). If the header was not -->
  12. <!-- present or if no message has been received, the '[last_*]' -->
  13. <!-- keyword is discarded, and all bytes until the end of the line -->
  14. <!-- are also discarded. -->
  15. <!-- -->
  16. <!-- If the specified header was present several times in the -->
  17. <!-- message, all occurences are concatenated (CRLF seperated) -->
  18. <!-- to be used in place of the '[last_*]' keyword. -->
  19. <send retrans="500">
  20. <![CDATA[
  21. SIP/2.0 404 OK
  22. [last_Via:]
  23. [last_From:]
  24. [last_To:];tag=[call_number]
  25. [last_Call-ID:]
  26. [last_CSeq:]
  27. Contact: <sip:[local_ip]:[local_port];transport=[transport]>
  28. Content-Length: 0
  29. ]]>
  30. </send>
  31. <recv request="ACK"
  32. optional="true"
  33. rtd="true"
  34. crlf="true">
  35. </recv>
  36. <!-- definition of the response time repartition table (unit is ms) -->
  37. <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
  38. <!-- definition of the call length repartition table (unit is ms) -->
  39. <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
  40. </scenario>