blob: c194ba94b1c9d4efe2e4841842c76bb081b852d9 [file] [log] [blame]
Alexandre Lision8af73cb2013-12-10 14:11:20 -05001# $Id$
2import inc_sip as sip
3import inc_sdp as sdp
4
5# Multiple good m=audio lines! The current algorithm in pjsua-lib will
6# select the first audio (note that in 1.x it will select the last audio)
7sdp = \
8"""
9v=0
10o=- 0 0 IN IP4 127.0.0.1
11s=-
12c=IN IP4 127.0.0.1
13t=0 0
14m=audio 5000 RTP/AVP 0
15m=audio 4000 RTP/AVP 0
16m=audio 3000 RTP/AVP 0
17"""
18
19pjsua_args = "--null-audio --auto-answer 200"
20extra_headers = ""
21include = ["Content-Type: application/sdp", # response must include SDP
22 "m=audio [1-9]+[0-9]* RTP/AVP[\\s\\S]+m=audio 0 RTP/AVP[\\s\\S]+m=audio 0 RTP/AVP"
23 ]
24exclude = []
25
26sendto_cfg = sip.SendtoCfg("Mutiple good m=audio lines", pjsua_args, sdp, 200,
27 extra_headers=extra_headers,
28 resp_inc=include, resp_exc=exclude)
29