THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task is now closed:
FS#88 - Certificate revocation lists support
User who did this - Andrei Pelinescu-Onciul (andrei)
Reason for closing: Implemented
Additional comments about closing: See GIT#73c87ff tls: CRL support
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=88
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 has a new comment added:
FS#88 - Certificate revocation lists support
User who did this - Andrei Pelinescu-Onciul (andrei)
----------
Thanks a lot, I've applied a modified version to 3.1 (porting + more docs).
I am not going to apply it to 3.0, since 3.0 it is in maintenance-only mode (only bugfixes, no new features go into it).
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=88#comment127
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 has a new comment added:
FS#88 - Certificate revocation lists support
User who did this - Andrei Pelinescu-Onciul (andrei)
----------
I've ported the patch to 3.1 (there were several issues, cfg framework a.s.o).
I'll commit it later today after some more testing.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=88#comment126
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 has a new comment added:
FS#88 - Certificate revocation lists support
User who did this - Henning Westerholt (henningw)
----------
Hello Geoffroy,
thank you for your patch. I've tried to apply it to current sr branch, and got a number of conflicts:
patching file config.h
Hunk #1 FAILED at 49.
1 out of 1 hunk FAILED -- saving rejects to file config.h.rej
patching file modules/tls/README
[..]
16 out of 19 hunks FAILED -- saving rejects to file modules/tls/README.rej
[..]
patching file modules/tls/tls_mod.c
[..]
Hunk #4 FAILED at 209.
Hunk #5 FAILED at 301.
2 out of 5 hunks FAILED -- saving rejects to file modules/tls/tls_mod.c.rej
The first conflict (README) is not an issue, as normally the document source should be changed instead of the generated file - take a look to modules/tls/doc/ for the respective files. The other conflicts are probably just some smaller issues due some later refactoring. If you can't access git at the moment, you can find some current snapshots of the source tree here: http://sip-router.org/tarballs/sr/master/ .
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=88#comment125
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.
looks like it is not currently possible to use a variable as avp index.
for example, statements
$var(tmp) = "i:10";
$avp($var(tmp)) = "value";
xlog("L_INFO", "Avp has value $avp(i:10)\n");
produce to syslog
INFO: Avp has value <null>
but if i write xlog like this
xlog("L_INFO", "Avp has value $avp($var(tmp))\n");
i get
INFO: Avp has value value
does this mean that avp name is "$var(tmp)" or what?
anyway, i want to be able to assign values to avps using dynamically
calculated avp names. if that is not currently possible, would be it ok
as a first aid, if i add to some utils module a function that takes a
param list (p1=v2;p2=v2;...) as argument and assigns avps based on it?
-- juha