THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#310 - K. crush with radiusclient.conf error
User who did this - Victor (coyote)
----------
#0 0x000000080881f71c in rc_read_config () from /usr/local/lib/libradiusclient-ng.so.2
[New Thread 8014f5400 (LWP 100618/<unknown>)]
[New LWP 100634]
(gdb) bt
#0 0x000000080881f71c in rc_read_config () from /usr/local/lib/libradiusclient-ng.so.2
#1 0x0000000808615e05 in init_acc_rad (leg_info=<value optimized out>, rad_cfg=0x801021c00 "/usr/local/etc/radiusclient-ng/radiusclient.conf", srv_type=1)
at acc_radius_mod.c:266
#2 0x000000080861661e in acc_radius_init (inf=<value optimized out>) at acc_radius_mod.c:288
#3 0x00000008083df537 in acc_init_engine (e=0x8010651a0) at acc_mod.c:787
#4 0x00000008083df6d2 in acc_register_engine (eng=0x808818b80) at acc_mod.c:829
#5 0x00000008086146c4 in mod_init () at acc_radius_mod.c:152
#6 0x000000000045c42a in init_mod (m=0x801020ac0) at sr_module.c:967
#7 0x000000000045c3fd in init_mod (m=0x801020d30) at sr_module.c:964
#8 0x000000000045c3fd in init_mod (m=0x801021050) at sr_module.c:964
#9 0x000000000045c3fd in init_mod (m=0x8010234d0) at sr_module.c:964
#10 0x000000000045c3fd in init_mod (m=0x8010239c0) at sr_module.c:964
#11 0x000000000045d0d3 in init_modules () at sr_module.c:994
#12 0x000000000046d01c in main (argc=<value optimized out>, argv=0x7fffffffdb68) at main.c:2470
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=310#comment937
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.
Hello,
I want to announce that a new person got developer GIT write access to
repository: Camille Oudot - from Orange, France. Currently, he is
developing mainly on Kamailio IMS modules, several patches being
submitted lately by him.
His git commit id is: coudot
My warm welcome and looking forward to future work within the project!
Cheers,
Daniel
--
Daniel-Constantin Mierla - http://www.asipto.comhttp://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda
Kamailio World Conference, April 16-17, 2013, Berlin
- http://conference.kamailio.com -
Hello,
I want to announce that a new person got developer GIT write access to
repository: Camille Oudot - from Orange, France. Currently, he is
developing mainly on Kamailio IMS modules, several patches being
submitted lately by him.
His git commit id is: coudot
My warm welcome and looking forward to future work within the project!
Cheers,
Daniel
--
Daniel-Constantin Mierla - http://www.asipto.comhttp://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda
Kamailio World Conference, April 16-17, 2013, Berlin
- http://conference.kamailio.com -
Module: sip-router
Branch: tmp/tm_async_reply_support
Commit: f185dc93d28f428973f3758941e16639cd32f5d7
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=f185dc9…
Author: Richard Good <richard.good(a)smilecoms.com>
Committer: Richard Good <richard.good(a)smilecoms.com>
Date: Thu Jun 6 12:35:05 2013 +0200
Merge branch 'master' into tmp/tm_async_reply_support
---
Module: sip-router
Branch: richard.good/diameter_rx_media
Commit: db59b3e62e425b58a573cd457ff78fe9c64fd383
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=db59b3e…
Author: Richard Good <richard.good(a)smilecoms.com>
Committer: Richard Good <richard.good(a)smilecoms.com>
Date: Thu Jun 6 12:24:18 2013 +0200
Merge branch 'master' into richard.good/diameter_rx_media
---
Module: sip-router
Branch: master
Commit: 8e937d260d0ff41f50be56e0a46ede44554f3f99
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=8e937d2…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Thu Jun 6 11:47:10 2013 +0200
cfgutils: updated docs to specify correct time unit for usleep
- it is microseconds, pointed by David K
---
modules/cfgutils/README | 7 ++++---
modules/cfgutils/doc/cfgutils_admin.xml | 8 +++++---
2 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/modules/cfgutils/README b/modules/cfgutils/README
index 4c79a2f..48307f1 100644
--- a/modules/cfgutils/README
+++ b/modules/cfgutils/README
@@ -355,17 +355,18 @@ sleep("1");
4.6. usleep(time)
- Waits "time" milli-seconds.
+ Waits "time" micro-seconds.
Meaning of the parameters is as follows:
- * time - Time to wait in milli-seconds.
+ * time - Time to wait in micro-seconds (1/1000000 of a second).
This function can be used from REQUEST_ROUTE, ONREPLY_ROUTE,
FAILURE_ROUTE, BRANCH_ROUTE.
Example 1.10. usleep usage
...
-usleep("500");
+# wait 5 miliseconds
+usleep("5000");
...
4.7. abort()
diff --git a/modules/cfgutils/doc/cfgutils_admin.xml b/modules/cfgutils/doc/cfgutils_admin.xml
index cab8ed2..bc50a85 100644
--- a/modules/cfgutils/doc/cfgutils_admin.xml
+++ b/modules/cfgutils/doc/cfgutils_admin.xml
@@ -266,12 +266,13 @@ sleep("1");
<function moreinfo="none">usleep(time)</function>
</title>
<para>
- Waits "time" milli-seconds.
+ Waits "time" micro-seconds.
</para>
<para>Meaning of the parameters is as follows:</para>
<itemizedlist>
<listitem>
- <para><emphasis>time</emphasis> - Time to wait in milli-seconds.
+ <para><emphasis>time</emphasis> - Time to wait in micro-seconds
+ (1/1000000 of a second).
</para>
</listitem>
</itemizedlist>
@@ -283,7 +284,8 @@ sleep("1");
<title><function>usleep</function> usage</title>
<programlisting format="linespecific">
...
-usleep("500");
+# wait 5 miliseconds
+usleep("5000");
...
</programlisting>
</example>
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#311 - Patch to Add s.urlencode.param
User who did this - Daniel-Constantin Mierla (miconda)
----------
I don't see where the transformation name is detected and its type is set. The part of patch in pv module seems to be only for interpretation of the transformation.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=311#comment936
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#311 - Patch to Add s.urlencode.param
User who did this - Josh (JoshE)
----------
Gah. Another problem. I apologize.
Can't seem to delete bad forum posts, but use urlencode_v2.diff.
----------
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=311#comment935
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.