16 lines
505 B
Python
16 lines
505 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=provider --user=username --password=password"
|
|
|
|
req1 = sip.RecvfromTransaction("", 401,
|
|
include=["REGISTER sip"],
|
|
exclude=["Authorization"],
|
|
resp_hdr=["WWW-Authenticate: Digest realm=\"python\", nonce=\"1234\""],
|
|
expect="PJSIP_ENOCREDENTIAL"
|
|
)
|
|
|
|
recvfrom_cfg = sip.RecvfromCfg("Failed registration because of realm test",
|
|
pjsua, [req1])
|