123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?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>
- <![CDATA[
- SIP/2.0 100 Trying
- [last_Via:]
- [last_From:]
- [last_To:];tag=[call_number]
- [last_Call-ID:]
- [last_CSeq:]
- ]]>
- </send>
- <send retrans="500">
- <![CDATA[
- SIP/2.0 301 Redirection
- [last_Via:]
- [last_From:]
- [last_To:];tag=[call_number]
- [last_Call-ID:]
- [last_CSeq:]
- Contact: <sip:target@192.168.254.254>
- Content-Length: 0
- ]]>
- </send>
- <recv request="ACK"
- optional="false"
- rtd="true"
- crlf="true">
- </recv>
-
-
- <pause milliseconds="4000"/>
-
- <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
-
- <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
- </scenario>
|