~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): 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-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