We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi
Kamailio checks if a dispatcher is reachable and alive by sending OPTIONS
At the moment, b2bua replies with 501 not implemented which causes kamailio to consider the dispatcher being down.
I just changed one line to make this work:
if req.getMethod() in ('NOTIFY', 'PING', 'OPTIONS'): # Whynot? return (req.genResponse(200, 'OK'), None, None)
I'm not sure if PING is a valid SIP method. Maybe this should be OPTIONS?
Also I suspect, this would just reply with 200 OK to notify. But CPE needs to get NOTIFY messages for MWI as example.
-Benoît-
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi
Kamailio checks if a dispatcher is reachable and alive by sending OPTIONS
At the moment, b2bua replies with 501 not implemented which causes kamailio to consider the dispatcher being down.
I just changed one line to make this work:
I'm not sure if PING is a valid SIP method. Maybe this should be OPTIONS?
Also I suspect, this would just reply with 200 OK to notify. But CPE needs to get NOTIFY messages for MWI as example.
-Benoît-
The text was updated successfully, but these errors were encountered: