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

« back to all changes in this revision

Viewing changes to tools/sippxml/uas_register_diff_contact.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-2" ?>
2
 
<!DOCTYPE scenario SYSTEM "sipp.dtd">
3
 
 
4
 
<scenario name="UAS REGISTER + SUBSCRIBE/noresource">
5
 
  <!-- By adding rrs="true" (Record Route Sets), the route sets         -->
6
 
  <!-- are saved and used for following messages sent. Useful to test   -->
7
 
  <!-- against stateful SIP proxies/B2BUAs.                             -->
8
 
  <recv request="REGISTER" crlf="true">
9
 
  </recv>
10
 
 
11
 
  <!-- The '[last_*]' keyword is replaced automatically by the          -->
12
 
  <!-- specified header if it was present in the last message received  -->
13
 
  <!-- (except if it was a retransmission). If the header was not       -->
14
 
  <!-- present or if no message has been received, the '[last_*]'       -->
15
 
  <!-- keyword is discarded, and all bytes until the end of the line    -->
16
 
  <!-- are also discarded.                                              -->
17
 
  <!--                                                                  -->
18
 
  <!-- If the specified header was present several times in the         -->
19
 
  <!-- message, all occurences are concatenated (CRLF seperated)        -->
20
 
  <!-- to be used in place of the '[last_*]' keyword.                   -->
21
 
 
22
 
  <send>
23
 
    <![CDATA[
24
 
 
25
 
      SIP/2.0 200 OK
26
 
      [last_Via:]
27
 
      [last_From:]
28
 
      [last_To:];tag=[call_number]
29
 
      [last_Call-ID:]
30
 
      [last_CSeq:]
31
 
      Contact: <sip:127.0.0.50:5060;transport=[transport]>
32
 
      Content-Length: 0
33
 
 
34
 
    ]]>
35
 
  </send>
36
 
 
37
 
  <recv request="REGISTER" crl="true">
38
 
  </recv>
39
 
  
40
 
  <send>
41
 
    <![CDATA[
42
 
 
43
 
      SIP/2.0 200 OK
44
 
      [last_Via:]
45
 
      [last_From:]
46
 
      [last_To:];tag=[call_number]
47
 
      [last_Call-ID:]
48
 
      [last_CSeq:]
49
 
      Contact: <sip:sip:127.0.0.50:5060;transport=[transport]>
50
 
      Content-Length: 0
51
 
    ]]>
52
 
  </send>
53
 
 
54
 
</scenario>
55