mirror of
https://github.com/asterisk/asterisk.git
synced 2026-05-05 21:04:01 +00:00
Review: https://reviewboard.asterisk.org/r/1891/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369517 65c4cc65-6c06-0410-ace0-fbb531ad65f3
21 lines
330 B
Python
21 lines
330 B
Python
# $Id$
|
|
import inc_sip as sip
|
|
import inc_sdp as sdp
|
|
|
|
sdp = \
|
|
"""
|
|
v=0
|
|
o=- 0 0 IN IP4 127.0.0.1
|
|
s=pjmedia
|
|
c=IN IP4 127.0.0.1
|
|
t=0 0
|
|
m=audio 4000 RTP/AVP 0 101
|
|
a=rtpmap:0 PCMU/8000
|
|
a=sendrecv
|
|
a=rtpmap:101 telephone-event/8000
|
|
a=fmtp:101 0-15
|
|
"""
|
|
|
|
sendto_cfg = sip.SendtoCfg( "simple call", "--null-audio --auto-answer 200", sdp, 200)
|
|
|