blob: 7f65ee145e09b81f35ff17afb050ba9e8eeff8ff [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001# $Id: 100_simple.py 3284 2010-08-18 07:38:48Z bennylp $
2import inc_sip as sip
3import inc_sdp as sdp
4
5pjsua = "--null-audio --id=sip:CLIENT --registrar sip:127.0.0.1:$PORT " + \
6 "--auto-update-nat=0"
7
8req1 = sip.RecvfromTransaction("Registration", 200,
9 include=["REGISTER sip"],
10 exclude=["Authorization"],
11 resp_hdr=["Server: Snake Registrar", "Expires: 221", "Contact: sip:localhost"],
12 expect="registration success"
13 )
14
15recvfrom_cfg = sip.RecvfromCfg("Simple registration test",
16 pjsua, [req1])