On 3/7/08, Jo?o Mesquita <jmesquita at contactnet.com.br> wrote: > Dear all, > > I am having trouble detecting 486 responses to invite requests when > using PJSUA-API with the python wrapper. > > By looking at the struct definition of sip_event passed on to the > on_call_state callback, I could not figure out if there is a way to see > what message exactly is being received at each call setup stage. True pjsip_event is not implemented in Python, since most of its contents are pointers to pjsip objects. But to get the call status you can use something like this instead: call_info = py_pjsua.call_get_info(call_id) if call_info.last_status == 486: print "Yeah it's 486" cheers, -benny > Pjsip_Event's docstrings does not help much either ... :D > > Thanks, > Mesquita