blob: 7bdb14eed73bca1779940ef31f805015b502f0be [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=xapplicationx 4000 RTP/AVP 100
13a=rtpmap:100 myapp/80000
14m=audio 5000 RTP/AVP 0
15"""
16
17pjsua_args = "--null-audio --auto-answer 200"
18extra_headers = ""
19include = ["Content-Type: application/sdp", # response must include SDP
20 "m=xapplicationx 0 RTP/AVP[\\s\\S]+m=audio [1-9]+[0-9]* RTP/AVP"
21 ]
22exclude = []
23
24sendto_cfg = sip.SendtoCfg("Mixed audio and unknown", pjsua_args, sdp, 200,
25 extra_headers=extra_headers,
26 resp_inc=include, resp_exc=exclude)
27