blob: 4e7465a2676db2083c7d098dc0dc108bcf25daf2 [file] [log] [blame]
Alexandre Lision67916dd2014-01-24 13:33:04 -05001# $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=pjmedia
10c=IN IP4 127.0.0.1
11t=0 0
12"""
13
14pjsua_args = "--null-audio --auto-answer 200"
15extra_headers = ""
16include = []
17exclude = []
18
19sendto_cfg = sip.SendtoCfg("No media in SDP", pjsua_args, sdp, 400,
20 extra_headers=extra_headers,
21 resp_inc=include, resp_exc=exclude)
22