blob: 8536f1a220c4728c4423e84ba330c30d8df6076d [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=xapplicationx 4000 RTP/AVP 100
13a=rtpmap:100 myapp/80000
14m=audio 5000 RTP/AVP 0
15a=crypto:1 aes_cm_128_hmac_sha1_80 inline:WnD7c1ksDGs+dIefCEo8omPg4uO8DYIinNGL5yxQ
16"""
17
18pjsua_args = "--null-audio --auto-answer 200 --use-srtp 1 --srtp-secure 0"
19extra_headers = ""
20include = ["Content-Type: application/sdp", # response must include SDP
21 "m=xapplicationx 0 RTP/AVP[\\s\\S]+m=audio [1-9]+[0-9]* RTP/AVP[\\s\\S]+a=crypto"
22 ]
23exclude = []
24
25sendto_cfg = sip.SendtoCfg("Unknown media and SRTP audio", pjsua_args, sdp, 200,
26 extra_headers=extra_headers,
27 resp_inc=include, resp_exc=exclude)
28