123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?xml version="1.0" encoding="ISO-8859-1" ?>
- <!DOCTYPE scenario SYSTEM "sipp.dtd">
- <scenario name="Basic UAS responder">
- <recv request="INVITE" crlf="true">
- </recv>
- <send retrans="500">
- <![CDATA[
- SIP/2.0 200 OK
- [last_Via:]
- [last_From:]
- [last_To:];tag=[call_number]
- [last_Call-ID:]
- [last_CSeq:]
- Contact: <sip:[local_ip]:[local_port];transport=[transport]>
- Content-Type: application/sdp
- Content-Length: [len]
-
- v=0
- o=Some-UserAgent 68 210 IN IP4 [local_ip]
- s=SIP Call
- c=IN IP4 [local_ip]
- t=0 0
- m=audio 17294 RTP/AVP 0
- c=IN IP4 [local_ip]
- ]]>
- </send>
- <recv request="ACK"
- optional="true"
- rtd="true"
- crlf="true">
- </recv>
-
- <recv request="INVITE" crlf="true">
- </recv>
- <send retrans="500">
- <![CDATA[
- SIP/2.0 500 SDP rejected for test
- [last_Via:]
- [last_From:]
- [last_To:];tag=[call_number]
- [last_Call-ID:]
- [last_CSeq:]
- Contact: <sip:[local_ip]:[local_port];transport=[transport]>
- ]]>
- </send>
- <recv request="ACK"
- rtd="true"
- crlf="true">
- </recv>
- <recv request="INVITE" crlf="true">
- </recv>
- <send retrans="500">
- <![CDATA[
- SIP/2.0 200 OK
- [last_Via:]
- [last_From:]
- [last_To:];tag=[call_number]
- [last_Call-ID:]
- [last_CSeq:]
- Contact: <sip:[local_ip]:[local_port];transport=[transport]>
- Content-Type: application/sdp
- Content-Length: [len]
-
- v=0
- o=Some-UserAgent 68 210 IN IP4 [local_ip]
- s=SIP Call
- c=IN IP4 [local_ip]
- t=0 0
- m=audio 17294 RTP/AVP 0
- c=IN IP4 [local_ip]
- ]]>
- </send>
- <recv request="ACK"
- rtd="true"
- crlf="true">
- </recv>
-
- <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
-
- <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
- </scenario>
|