uas-answer-200-reinvite-without-sdp.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE scenario SYSTEM "sipp.dtd">
  3. <!-- This program is free software; you can redistribute it and/or -->
  4. <!-- modify it under the terms of the GNU General Public License as -->
  5. <!-- published by the Free Software Foundation; either version 2 of the -->
  6. <!-- License, or (at your option) any later version. -->
  7. <!-- -->
  8. <!-- This program is distributed in the hope that it will be useful, -->
  9. <!-- but WITHOUT ANY WARRANTY; without even the implied warranty of -->
  10. <!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
  11. <!-- GNU General Public License for more details. -->
  12. <!-- -->
  13. <!-- You should have received a copy of the GNU General Public License -->
  14. <!-- along with this program; if not, write to the -->
  15. <!-- Free Software Foundation, Inc., -->
  16. <!-- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -->
  17. <!-- -->
  18. <!-- Sipp default 'uas' scenario. -->
  19. <!-- -->
  20. <scenario name="UAS sending 200/re-INVITE response without SDP (#1045)">
  21. <!-- By adding rrs="true" (Record Route Sets), the route sets -->
  22. <!-- are saved and used for following messages sent. Useful to test -->
  23. <!-- against stateful SIP proxies/B2BUAs. -->
  24. <recv request="INVITE" crlf="true">
  25. </recv>
  26. <send retrans="500">
  27. <![CDATA[
  28. SIP/2.0 200 OK
  29. [last_Via:]
  30. [last_From:]
  31. [last_To:]
  32. [last_Call-ID:]
  33. [last_CSeq:]
  34. Contact: sip:sipp@[local_ip]:[local_port]
  35. Content-Type: application/sdp
  36. Content-Length: [len]
  37. v=0
  38. o=- 3441953879 3441953879 IN IP4 192.168.0.15
  39. s=pjmedia
  40. c=IN IP4 192.168.0.15
  41. t=0 0
  42. m=audio 4004 RTP/AVP 0
  43. ]]>
  44. </send>
  45. <recv request="ACK" crlf="true">
  46. </recv>
  47. <recv request="INVITE" crlf="true">
  48. </recv>
  49. <send retrans="500">
  50. <![CDATA[
  51. SIP/2.0 200 OK
  52. [last_Via:]
  53. [last_From:]
  54. [last_To:]
  55. [last_Call-ID:]
  56. [last_CSeq:]
  57. Contact: sip:sipp@[local_ip]:[local_port]
  58. Content-Length: [len]
  59. ]]>
  60. </send>
  61. <recv request="ACK" crlf="true">
  62. </recv>
  63. <!-- definition of the response time repartition table (unit is ms) -->
  64. <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
  65. <!-- definition of the call length repartition table (unit is ms) -->
  66. <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
  67. </scenario>