blob: a0397c591895e19674ec6c12839e8052c140367a [file] [log] [blame]
Alexandre Lision67916dd2014-01-24 13:33:04 -05001# $Id$
2import inc_sip as sip
3import inc_sdp as sdp
4
5# Multiple m=audio, one of them has dynamic PT codec that we don't support
6sdp = \
7"""
8v=0
9o=- 0 0 IN IP4 127.0.0.1
10s=-
11c=IN IP4 127.0.0.1
12t=0 0
13m=audio 5000 RTP/AVP 100
14a=rtpmap:100 someunknowncodec/8000
15m=audio 4000 RTP/AVP 0
16"""
17
18pjsua_args = "--null-audio --auto-answer 200"
19extra_headers = ""
20include = ["Content-Type: application/sdp", # response must include SDP
21 "m=audio 0 RTP/AVP[\s\S]+m=audio [1-9]+[0-9]* RTP/AVP"
22 ]
23exclude = []
24
25sendto_cfg = sip.SendtoCfg("Multiple audio lines", pjsua_args, sdp, 200,
26 extra_headers=extra_headers,
27 resp_inc=include, resp_exc=exclude)
28