blob: 1dc8422b7206db7a32fcf1961b8ab3d17faf7f9d [file] [log] [blame]
Benny Prijono632be0a2008-06-26 19:51:01 +00001# $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
12m=video 4000 RTP/AVP 0
13"""
14
15pjsua_args = "--null-audio --auto-answer 200"
16extra_headers = ""
Benny Prijonoab8dba92008-06-27 21:59:15 +000017include = []
Benny Prijono632be0a2008-06-26 19:51:01 +000018exclude = []
19
20sendto_cfg = sip.SendtoCfg("Video not acceptable", pjsua_args, sdp, 488,
21 extra_headers=extra_headers,
22 resp_inc=include, resp_exc=exclude)
23