~noskcaj/ubuntu/saucy/sflphone/merge-1.2.3-2

« back to all changes in this revision

Viewing changes to tools/sippxml/ip2ip_uac_send_hangup.xml

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2012-02-18 21:47:09 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120218214709-6362d71gqdsdkrj5
Tags: 1.0.2-1
* New upstream release
  - remove logging patch (applied upstream)
  - update s390 patch since it was partially applied upstream
* Include the Evolution plugin as a separate binary package

* Fix compilation issues on SH4 (closes: #658987)
* Merge Ubuntu's binutils-gold linking fix

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
 
 
20
<scenario name="accountcall_client">
 
21
 
 
22
  <send retrans="500">
 
23
    <![CDATA[
 
24
 
 
25
      INVITE sip:[remote_ip] SIP/2.0
 
26
      Via: SIP/2.0/[transport] [local_ip]:[local_port];rport;branch=[branch]
 
27
      From: <sip:[remote_ip]:[remote_port]>;tag=[call_number]
 
28
      To: <sip:[remote_ip]:[remote_port]>
 
29
      Call-ID: [call_id]
 
30
      CSeq: 1 INVITE
 
31
      Contact: sip:[local_ip]:[local_port]
 
32
      Max-Forwards: 70
 
33
      Subject: Functional Test
 
34
      Content-Type: application/sdp
 
35
      Content-Length: [len]
 
36
 
 
37
      v=0
 
38
      o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
 
39
      s=-
 
40
      c=IN IP[media_ip_type] [media_ip]
 
41
      t=0 0
 
42
      m=audio [media_port] RTP/AVP 0
 
43
      a=rtpmap:0 PCMU/8000
 
44
 
 
45
    ]]>
 
46
  </send>
 
47
 
 
48
  <recv response="100" optional="true">
 
49
  </recv>
 
50
 
 
51
  <recv response="180">
 
52
  </recv>
 
53
 
 
54
 
 
55
  <recv response="200">
 
56
    <action>
 
57
      <ereg regexp="tag=.*" search_in="hdr" header="To:" check_it="true" assign_to="1" />
 
58
    </action>
 
59
  </recv>
 
60
 
 
61
  <send>
 
62
    <![CDATA[
 
63
 
 
64
      ACK sip:[remote_ip] SIP/2.0
 
65
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
 
66
      From: <sip:[local_ip]:[local_port]>;tag=[call_number]
 
67
      To: <sip:[remote_ip]:[remote_port]>;tag=[$1]
 
68
      Call-ID: [call_id]
 
69
      CSeq: 2 ACK
 
70
      Contact: sip:[local_ip]:[local_port]
 
71
      Max-Forwards: 70
 
72
      Subject: Functional Test
 
73
      Content-Length: 0
 
74
 
 
75
    ]]>
 
76
  </send>
 
77
 
 
78
  <send retrans="500">
 
79
    <![CDATA[
 
80
 
 
81
      BYE sip:[remote_ip] SIP/2.0
 
82
      Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
 
83
      From: <sip:[local_ip]:[local_port]>;tag=[call_number]
 
84
      To: <sip:[remote_ip]:[remote_port]>;tag=[$1]
 
85
      Call-ID: [call_id]
 
86
      CSeq: 3 BYE
 
87
      Contact: sip:[local_ip]:[local_port]
 
88
      Max-Forwards: 70
 
89
      Subject: Functional Test
 
90
      Content-Length: 0
 
91
 
 
92
    ]]>
 
93
  </send>
 
94
 
 
95
  <recv response="200">
 
96
  </recv>
 
97
 
 
98
</scenario>