uac-183-wrong-media.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. <!-- Correct call cancellation on wrong SDP offer PR #3137 -->
  19. <scenario name="UAC sending INVITE with unsupported media in SDP offer">
  20. <send retrans="500">
  21. <![CDATA[
  22. INVITE sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  23. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  24. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[pid]SIPpTag09[call_number]
  25. To: [service] <sip:[service]@[remote_ip]:[remote_port]>
  26. Call-ID: [call_id]
  27. CSeq: [cseq] INVITE
  28. Contact: sip:sipp@[local_ip]:[local_port]
  29. Max-Forwards: 70
  30. Allow: INVITE, ACK, CANCEL, BYE, PRACK, UPDATE, REFER, MESSAGE
  31. Supported: 100rel, precondition
  32. Content-Type: application/sdp
  33. Content-Length: [len]
  34. v=0
  35. o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
  36. s=-
  37. c=IN IP[local_ip_type] [local_ip]
  38. t=0 0
  39. m=video 11128 RTP/AVP 34 103 104
  40. a=rtpmap:34 H263/90000
  41. a=rtpmap:103 H263-1998/90000
  42. a=rtpmap:104 H264/90000
  43. a=sendrecv
  44. ]]>
  45. </send>
  46. <recv response="100" optional="true">
  47. </recv>
  48. <recv response="183" optional="true">
  49. </recv>
  50. <recv response="488" rtd="true" crlf="true">
  51. </recv>
  52. <send>
  53. <![CDATA[
  54. ACK sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  55. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  56. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[pid]SIPpTag09[call_number]
  57. To: [service] <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
  58. Call-ID: [call_id]
  59. CSeq: 1 ACK
  60. Contact: sip:sipp@[local_ip]:[local_port]
  61. Max-Forwards: 70
  62. Subject: Performance Test
  63. Content-Length: 0
  64. ]]>
  65. </send>
  66. <!-- definition of the response time repartition table (unit is ms) -->
  67. <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
  68. <!-- definition of the call length repartition table (unit is ms) -->
  69. <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
  70. </scenario>