blob: e96f2a37402b7187a1e8c95e3ec9cc1427252150 [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001<?xml version="1.0" encoding="ISO-8859-1" ?>
2<!DOCTYPE scenario SYSTEM "sipp.dtd">
3
4<scenario name="Basic UAS responder">
5 <recv request="INVITE" crlf="true">
6 </recv>
7
8 <send>
9 <![CDATA[
10
11 SIP/2.0 100 Trying
12 [last_Via:]
13 [last_From:]
14 [last_To:]
15 [last_Call-ID:]
16 [last_CSeq:]
17 Content-Length: 0
18
19 ]]>
20 </send>
21
22 <send>
23 <![CDATA[
24
25 SIP/2.0 180 Ringing
26 [last_Via:]
27 [last_From:]
28 [last_To:];tag=[call_number]
29 [last_Call-ID:]
30 [last_CSeq:]
31 Contact: <sip:192.168.0.15>
32 Content-Length: 0
33
34 ]]>
35 </send>
36
37 <!-- Wait for CANCEL -->
38 <recv request="CANCEL" crlf="true">
39 </recv>
40
41 <send>
42 <![CDATA[
43 SIP/2.0 200 OK
44 [last_Via:]
45 [last_From:]
46 [last_To:]
47 [last_Call-ID:]
48 [last_CSeq:]
49 Content-Length: 0
50
51 ]]>
52 </send>
53
54
55 <!-- definition of the response time repartition table (unit is ms) -->
56 <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
57
58 <!-- definition of the call length repartition table (unit is ms) -->
59 <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
60
61</scenario>
62