in the ivr script i have this:
def onOtherReply(self, code, reason):
debug("got reply: " + str(code) + " " + reason)
if self.state == connect:
if code < 200:
self.removeTimer(PROVISIONAL_REPLY_TIMER)
return 0
if code >= 200 and code < 300:
self.removeTimers()
self.flush()
self.disconnectMedia()
self.setRelayonly()
self.state = connected
return 0
elif code == 487:
return 0
elif code >= 300:
self.connectTry()
return 0
else:
return 1
this function used to get executed when there was any reply from b
leg. now there is no single "got reply" line in syslog.
has something changed in sems since in 1.2 or 1.4 that could explain,
why the function does not get called? this app used to work fine at
some point.
-- juha
_______________________________________________
Sems mailing list
[email protected]
http://lists.iptel.org/mailman/listinfo/sems