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

« back to all changes in this revision

Viewing changes to tools/sippxml/account_uas_register.xml

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-05-19 21:46:37 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120519214637-la8rbrford5kj6m3
Tags: 1.1.0-1
* New upstream release 
  - Fixes "FTBFS with libccrtp-dev/2.0.2 from experimental" (Closes: #663282)
* NEW Maintainer: Debian VoIP Team - Thanks Francois for your work.
  - (Closes: #665789: O: sflphone -- SIP and IAX2 compatible VoIP phone)
* Added Build-Depends: libdbus-c++-bin
* Add gcc47-fixes.patch

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
 
      REGISTER sip:[remote_ip] SIP/2.0
26
 
      Via: SIP/2.0/[transport] [local_ip]:[local_port];rport;branch=[branch]
27
 
      Max-Forwards: 70
28
 
      From: <sip:27182@[remote_ip]>;tag=[call_number]
29
 
      To: <sip:27182@[remote_ip]>
30
 
      Call-ID: REG///[call_id]
31
 
      CSeq: 1 REGISTER
32
 
      Contact: <sip:27182@[local_ip]:[local_port]>
33
 
      Content-Length: 0
34
 
      Expires: 300
35
 
 
36
 
    ]]>
37
 
  </send>
38
 
 
39
 
  <recv response="401" auth="true">
40
 
  </recv>
41
 
 
42
 
  <send retrans="500">
43
 
    <![CDATA[
44
 
 
45
 
      REGISTER sip:[remote_ip] SIP/2.0
46
 
      Via: SIP/2.0/[transport] [local_ip]:[local_port];rport;branch=[branch]
47
 
      Max-Forwards: 70
48
 
      From: <sip:27182@[remote_ip]>;tag=[call_number]
49
 
      To: <sip:27182@[remote_ip]>
50
 
      Call-ID: REG///[call_id]
51
 
      CSeq: 2 REGISTER
52
 
      Contact: <sip:27182@[local_ip]:[local_port]>
53
 
      Content-Length: 0
54
 
      Expires: 300
55
 
      [authentication username=27182 password=1234]
56
 
 
57
 
    ]]>
58
 
  </send>
59
 
 
60
 
  <recv response="200">
61
 
  </recv>
62
 
 
63
 
</scenario>