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

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.0.1/tests/pjsua/scripts-sendto/363_non_sip_uri_subscribe.py

  • Committer: Jackson Doak
  • Date: 2013-07-10 21:04:46 UTC
  • mfrom: (20.1.3 sid)
  • Revision ID: noskcaj@ubuntu.com-20130710210446-y8f587vza807icr9
Properly merged from upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: 363_non_sip_uri_subscribe.py 2392 2008-12-22 18:54:58Z bennylp $
 
2
import inc_sip as sip
 
3
import inc_sdp as sdp
 
4
 
 
5
# Some non-SIP URI's in Contact header
 
6
#
 
7
complete_msg = \
 
8
"""SUBSCRIBE sip:localhost SIP/2.0
 
9
Via: SIP/2.0/UDP 192.168.0.14:5060;rport;branch=z9hG4bKPj9db9
 
10
Max-Forwards: 70
 
11
From: <sip:192.168.0.14>;tag=08cd5bfc2d8a4fddb1f5e59c6961d298
 
12
To: <sip:localhost>
 
13
Call-ID: 3373d9eb32aa458db7e69c7ea51e0bd7
 
14
CSeq: 0 SUBSCRIBE
 
15
Contact: mailto:dontspam@pjsip.org
 
16
Contact: <mailto:dontspam@pjsip.org>
 
17
Contact: http://www.pjsip.org/the%20path.cgi?pname=pvalue
 
18
Contact: <sip:localhost>
 
19
Event: presence
 
20
Expires: 600
 
21
Accept: application/pidf+xml, application/xpidf+xml
 
22
Allow-Events: presence, refer
 
23
User-Agent: PJSUA v0.9.0-trunk/win32
 
24
Content-Length: 0
 
25
"""
 
26
 
 
27
 
 
28
sendto_cfg = sip.SendtoCfg( "Non SIP URI in Contact",
 
29
                            "--null-audio --auto-answer 200",
 
30
                            "", 200, complete_msg=complete_msg)