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

21 lines
591 B
Python

# $Id$
import inc_sip as sip
import inc_sdp as sdp
pjsua = "--null-audio --id=sip:CLIENT --registrar sip:127.0.0.1:$PORT " + \
"--realm=python --user=username --password=password " + \
"--auto-update-nat=0 --reg-timeout 300"
# 423 Response with Min-Expires header that is lower than what the client
# had requested
req1 = sip.RecvfromTransaction("Initial request", 423,
include=["REGISTER sip"],
exclude=[],
resp_hdr=["Min-Expires: 250"],
expect="invalid Min-Expires"
)
recvfrom_cfg = sip.RecvfromCfg("Invalid 423 response to REGISTER",
pjsua, [req1])