THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - Emmanuel Schmidbauer (eschmidbauer)
Attached to Project - sip-router
Summary - add support to auth_db to validate source IP address
Task Type - Improvement
Category - Modules kamailio
Status - Unconfirmed
Assigned To -
Operating System - All
Severity - Low
Priority - Normal
Reported Version - 4.2
Due in Version - Undecided
Due Date - Undecided
Details - I've attached the git diff.
This improvement is only executed if the module parameter "ip_address_column" is defined
Example:
modparam("auth_db", "ip_address_column", "ip_address")
This way it will not affect those who do not wish to implement this feature and still upgrade.
One or more files have been attached.
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=499
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
dpid: 1
pr: 1
match_op: 1
match_exp: ^0([1-9][0-9]+)$
match_len: 0
subst_exp: ^0([1-9][0-9]+)$
repl_exp: 0049\1
attrs: de
.
This is the example we have in the dialplan documentation. I wonder why we have "(" and ")" in the match_exp. It makes sense in
the subst_exp - but I still wonder about the match_exp.
If there's no use of it I would like to simplify the example.
/O
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#495 - Kamailio Crash in WEBSOCKET module
User who did this - Vitaliy Aleksandrov (Vitaliy)
----------
There was a race condition that is fixed in 4.1.3. So it is likely that upgrade will solve your problem.
----------
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=495#comment1716
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task is now closed:
FS#492 - kamctl warning when greadlink does not exist
User who did this - Daniel-Constantin Mierla (miconda)
Reason for closing: Fixed
Additional comments about closing: Patches in master and 4.2
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=492
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task is now closed:
FS#495 - Kamailio Crash in WEBSOCKET module
User who did this - Daniel-Constantin Mierla (miconda)
Reason for closing: Fixed
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=495
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
while working on pua_rpc module, i think i found a bug in
pua/send_publish function. it defines
int ret = -1;
if etag check fails or publish has no body, it does this:
ret = 418;
goto error;
or
ret = ERR_PUBLISH_NO_BODY;
goto error;
at error, however, the above assignments are reverted:
error:
ret = -1;
my suggestion is to remove the above assignment. ok?
-- juha