123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="ISO-8859-1" ?>
- <!DOCTYPE scenario SYSTEM "sipp.dtd">
- <scenario name="UAC sending INVITE with unsupported media in SDP offer">
- <send retrans="500">
- <![CDATA[
- INVITE sip:[service]@[remote_ip]:[remote_port] SIP/2.0
- Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
- From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[pid]SIPpTag09[call_number]
- To: [service] <sip:[service]@[remote_ip]:[remote_port]>
- Call-ID: [call_id]
- CSeq: [cseq] INVITE
- Contact: sip:sipp@[local_ip]:[local_port]
- Max-Forwards: 70
- Allow: INVITE, ACK, CANCEL, BYE, PRACK, UPDATE, REFER, MESSAGE
- Supported: 100rel, precondition
- Content-Type: application/sdp
- Content-Length: [len]
- v=0
- o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
- s=-
- c=IN IP[local_ip_type] [local_ip]
- t=0 0
- m=video 11128 RTP/AVP 34 103 104
- a=rtpmap:34 H263/90000
- a=rtpmap:103 H263-1998/90000
- a=rtpmap:104 H264/90000
- a=sendrecv
- ]]>
- </send>
- <recv response="100" optional="true">
- </recv>
- <recv response="183" optional="true">
- </recv>
- <recv response="488" rtd="true" crlf="true">
- </recv>
- <send>
- <![CDATA[
- ACK sip:[service]@[remote_ip]:[remote_port] SIP/2.0
- Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
- From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[pid]SIPpTag09[call_number]
- To: [service] <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
- Call-ID: [call_id]
- CSeq: 1 ACK
- Contact: sip:sipp@[local_ip]:[local_port]
- Max-Forwards: 70
- Subject: Performance Test
- Content-Length: 0
- ]]>
- </send>
-
- <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
-
- <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
- </scenario>
|