~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.1.0/tests/pjsua/scripts-sipp/uas-cancel-no-final.xml

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-01-07 14:51:16 UTC
  • mfrom: (4.3.5 sid)
  • Revision ID: package-import@ubuntu.com-20150107145116-yxnafinf4lrdvrmx
Tags: 1.4.1-0.1ubuntu1
* Merge with Debian, remaining changes:
 - Drop soprano, nepomuk build-dep
* Drop ubuntu patches, now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?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