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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Francois Marier, Francois Marier, Mark Purcell
  • Date: 2014-10-18 15:08:50 UTC
  • mfrom: (1.1.12)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20141018150850-2exfk34ckb15pcwi
Tags: 1.4.1-0.1
[ Francois Marier ]
* Non-maintainer upload
* New upstream release (closes: #759576, #741130)
  - debian/rules +PJPROJECT_VERSION := 2.2.1
  - add upstream patch to fix broken TLS support
  - add patch to fix pjproject regression

[ Mark Purcell ]
* Build-Depends:
  - sflphone-daemon + libavformat-dev, libavcodec-dev, libswscale-dev,
  libavdevice-dev, libavutil-dev
  - sflphone-gnome + libclutter-gtk-1.0-dev

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