uac-inv-two-media-but-one-disabled-no-rtpmap.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE scenario SYSTEM "sipp.dtd">
  3. <scenario name="Two media with one media disabled and no rtpmap for dynamic PT">
  4. <!-- This causes assertion (on r3191 or older) if later pjsua initiates re-INVITE -->
  5. <send retrans="500">
  6. <![CDATA[
  7. INVITE sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  8. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  9. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
  10. To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
  11. Call-ID: [call_id]
  12. CSeq: 3 INVITE
  13. Contact: sip:sipp@[local_ip]:[local_port]
  14. Max-Forwards: 70
  15. Subject: Performance Test
  16. Content-Type: application/sdp
  17. Content-Length: [len]
  18. v=0
  19. o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
  20. s=-
  21. c=IN IP[media_ip_type] [media_ip]
  22. t=0 0
  23. m=audio 4000 RTP/AVP 0
  24. m=video 0 RTP/AVP 100
  25. ]]>
  26. </send>
  27. <recv response="100" optional="true">
  28. </recv>
  29. <recv response="180" optional="true">
  30. </recv>
  31. <recv response="200" rtd="true">
  32. </recv>
  33. <send>
  34. <![CDATA[
  35. ACK sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  36. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  37. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
  38. To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
  39. Call-ID: [call_id]
  40. CSeq: 3 ACK
  41. Contact: sip:sipp@[local_ip]:[local_port]
  42. Max-Forwards: 70
  43. Subject: Performance Test
  44. Content-Length: 0
  45. ]]>
  46. </send>
  47. <!-- Waiting re-INVITE from pjsua -->
  48. <recv request="INVITE" crlf="true">
  49. </recv>
  50. <send retrans="500">
  51. <![CDATA[
  52. SIP/2.0 200 OK
  53. [last_Via:]
  54. [last_From:]
  55. [last_To:];tag=[call_number]
  56. [last_Call-ID:]
  57. [last_CSeq:]
  58. Contact: sip:sipp@[local_ip]:[local_port]
  59. Content-Type: application/sdp
  60. v=0
  61. o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
  62. s=-
  63. c=IN IP[media_ip_type] [media_ip]
  64. t=0 0
  65. m=audio 4000 RTP/AVP 0
  66. m=video 0 RTP/AVP 100
  67. ]]>
  68. </send>
  69. <!-- Expecting assertion here -->
  70. <recv request="ACK" crlf="true">
  71. </recv>
  72. <!-- definition of the response time repartition table (unit is ms) -->
  73. <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
  74. <!-- definition of the call length repartition table (unit is ms) -->
  75. <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
  76. </scenario>