blob: 41a64b693e6ad27981621279f00555d10c7bc487 [file] [log] [blame]
Alexandre Lision8af73cb2013-12-10 14:11:20 -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=-
10c=IN IP4 127.0.0.1
11t=0 0
12m=video 0 RTP/AVP 100
13m=audio 5000 RTP/AVP 0
14"""
15
16pjsua_args = "--null-audio --auto-answer 200"
17extra_headers = ""
18include = ["Content-Type: application/sdp", # response must include SDP
19 "m=video 0 RTP/AVP[\\s\\S]+m=audio [1-9]+[0-9]* RTP/AVP"
20 ]
21exclude = []
22
23sendto_cfg = sip.SendtoCfg("SDP media with port 0 and no rtpmap for dynamic PT", pjsua_args, sdp, 200,
24 extra_headers=extra_headers,
25 resp_inc=include, resp_exc=exclude)
26