uac-inv-multiple-require.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE scenario SYSTEM "sipp.dtd">
  3. <scenario name="Multiple Require header fields">
  4. <!-- UAC with bad ACK causes assertion with pjsip 1.4 -->
  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]>
  11. Call-ID: [call_id]
  12. CSeq: 1 INVITE
  13. Contact: sip:sipp@[local_ip]:[local_port]
  14. Max-Forwards: 70
  15. Require: timer
  16. Require: toto
  17. Subject: Performance Test
  18. Content-Type: application/sdp
  19. Content-Length: [len]
  20. v=0
  21. o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
  22. s=-
  23. c=IN IP[media_ip_type] [media_ip]
  24. t=0 0
  25. m=audio [media_port] RTP/AVP 0
  26. a=rtpmap:0 PCMU/8000
  27. ]]>
  28. </send>
  29. <recv response="100"
  30. optional="true">
  31. </recv>
  32. <recv response="420" rtd="true">
  33. </recv>
  34. <send>
  35. <![CDATA[
  36. ACK sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  37. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  38. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
  39. To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
  40. Call-ID: [call_id]
  41. CSeq: 1 ACK
  42. Contact: sip:sipp@[local_ip]:[local_port]
  43. Max-Forwards: 70
  44. Subject: Performance Test
  45. Content-Length: 0
  46. ]]>
  47. </send>
  48. <!-- definition of the response time repartition table (unit is ms) -->
  49. <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
  50. <!-- definition of the call length repartition table (unit is ms) -->
  51. <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
  52. </scenario>