~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-answer-200-update-without-sdp.xml

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2014-01-28 18:23:36 UTC
  • mfrom: (1.1.11)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: package-import@ubuntu.com-20140128182336-3xenud1kbnwmf3mz
* New upstream release 
  - Fixes "New Upstream Release" (Closes: #735846)
  - Fixes "Ringtone does not stop" (Closes: #727164)
  - Fixes "[sflphone-kde] crash on startup" (Closes: #718178)
  - Fixes "sflphone GUI crashes when call is hung up" (Closes: #736583)
* Build-Depends: ensure GnuTLS 2.6
  - libucommon-dev (>= 6.0.7-1.1), libccrtp-dev (>= 2.0.6-3)
  - Fixes "FTBFS Build-Depends libgnutls{26,28}-dev" (Closes: #722040)
* Fix "boost 1.49 is going away" unversioned Build-Depends: (Closes: #736746)
* Add Build-Depends: libsndfile-dev, nepomuk-core-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
<!-- This program is free software; you can redistribute it and/or      -->
 
5
<!-- modify it under the terms of the GNU General Public License as     -->
 
6
<!-- published by the Free Software Foundation; either version 2 of the -->
 
7
<!-- License, or (at your option) any later version.                    -->
 
8
<!--                                                                    -->
 
9
<!-- This program is distributed in the hope that it will be useful,    -->
 
10
<!-- but WITHOUT ANY WARRANTY; without even the implied warranty of     -->
 
11
<!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the      -->
 
12
<!-- GNU General Public License for more details.                       -->
 
13
<!--                                                                    -->
 
14
<!-- You should have received a copy of the GNU General Public License  -->
 
15
<!-- along with this program; if not, write to the                      -->
 
16
<!-- Free Software Foundation, Inc.,                                    -->
 
17
<!-- 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA             -->
 
18
<!--                                                                    -->
 
19
<!--                 Sipp default 'uas' scenario.                       -->
 
20
<!--                                                                    -->
 
21
 
 
22
<scenario name="UAS sending 200/UPDATE response without SDP answer (#1045)">
 
23
  <!-- By adding rrs="true" (Record Route Sets), the route sets         -->
 
24
  <!-- are saved and used for following messages sent. Useful to test   -->
 
25
  <!-- against stateful SIP proxies/B2BUAs.                             -->
 
26
 
 
27
  <recv request="INVITE" crlf="true">
 
28
  </recv>
 
29
 
 
30
  <send retrans="500">
 
31
    <![CDATA[
 
32
 
 
33
      SIP/2.0 200 OK
 
34
      [last_Via:]
 
35
      [last_From:]
 
36
      [last_To:];tag=[call_number]
 
37
      [last_Call-ID:]
 
38
      [last_CSeq:]
 
39
      Contact: sip:sipp@[local_ip]:[local_port]
 
40
      Content-Type: application/sdp
 
41
      Content-Length: [len]
 
42
 
 
43
      v=0
 
44
      o=- 3441953879 3441953879 IN IP4 192.168.0.15
 
45
      s=pjmedia
 
46
      c=IN IP4 192.168.0.15
 
47
      t=0 0
 
48
      m=audio 4004 RTP/AVP 0
 
49
 
 
50
    ]]>
 
51
  </send>
 
52
 
 
53
  <recv request="ACK" crlf="true">
 
54
  </recv>
 
55
 
 
56
 
 
57
  <recv request="UPDATE" crlf="true">
 
58
  </recv>
 
59
 
 
60
  <send>
 
61
    <![CDATA[
 
62
 
 
63
      SIP/2.0 200 OK
 
64
      [last_Via:]
 
65
      [last_From:]
 
66
      [last_To:]
 
67
      [last_Call-ID:]
 
68
      [last_CSeq:]
 
69
      Contact: sip:sipp@[local_ip]:[local_port]
 
70
      Content-Length: [len]
 
71
 
 
72
        ]]>
 
73
  </send>
 
74
 
 
75
 
 
76
  <!-- definition of the response time repartition table (unit is ms)   -->
 
77
  <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
 
78
 
 
79
  <!-- definition of the call length repartition table (unit is ms)     -->
 
80
  <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
 
81
 
 
82
</scenario>
 
83