blob: 5d1b7d3fac58c7b9211d897f45edc32c976d8c1f [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001# $Id$
2import inc_sip as sip
3import inc_sdp as sdp
4
5sdp = \
6"""
7v=0
8o=- 0 0 IN IP4 127.0.0.1
9s=-
10c=IN IP4 127.0.0.1
11t=0 0
12m=audio 5000 RTP/AVP 0
13m=xapplicationx 4000 XRTPX/XAVPX 54
14"""
15
16pjsua_args = "--null-audio --auto-answer 200"
17extra_headers = ""
18include = ["Content-Type: application/sdp", # response must include SDP
19 "m=audio [1-9]+[0-9]* RTP/AVP[\\s\\S]+m=xapplicationx 0 XRTPX/XAVPX "
20 ]
21exclude = []
22
23sendto_cfg = sip.SendtoCfg("Mixed audio and unknown and with unknown transport",
24 pjsua_args, sdp, 200,
25 extra_headers=extra_headers,
26 resp_inc=include, resp_exc=exclude)
27