D-Modem/pjproject-2.11.1/tests/pjsua/scripts-recvfrom/300_timer_good.py
2021-10-29 14:41:03 -04:00

18 lines
487 B
Python

# $Id$
import inc_sip as sip
import inc_sdp as sdp
# INVITE session using session timer
pjsua = "--null-audio sip:127.0.0.1:$PORT --use-timer 2 --timer-min-se 100 --timer-se 2000 --no-tcp"
req = sip.RecvfromTransaction("INVITE with session timer", 200,
include=["Session-Expires:\s*2000", "Min-SE:\s*100"],
exclude=[],
resp_hdr=["Session-Expires: 1000;refresher=uac"]
)
recvfrom_cfg = sip.RecvfromCfg("INVITE session using session timer",
pjsua, [req])