i'm getting from textops module lots of warnings like this:
Jun 1 20:24:49 localhost /usr/sbin/sip-router[14871]: INFO: textops [textops.c:1527]: using hdr type (11) instead of <Content-Type>
are they really necessary? i would prefer not to get them.
-- juha
i'm getting five of these to syslog:
Jun 1 20:11:42 localhost /usr/sbin/sip-router[14204]: WARNING: <core> [usr_avp.c:882]: i: and s: avp name syntax is deprecated!
i checked and the only place where i have i: or s: are the tm module
params that we discussed with jan about:
# egrep 'i:' /etc/sip-router/sip-router.cfg
alias=sip.test.fi:5060
modparam("tm", "fr_inv_timer_avp", "i:704")
modparam("tm", "fr_timer_avp", "i:705")
modparam("tm", "contacts_avp", "i:711")
that is three, not five. i wonder where those five warning come from?
-- juha
kex module documentation has:
3.4. setbflag(flag [, branch])
flag - the index of the branch flag to be set. Can be integer or
pseudo-variable with integer value.
are quotes "" always required?
setbflag(1);
does not give an error (or at least i cannot find one from among all
those debug messages that seem to be on by default).
if quotes are required, is it sure that if string is an int, it will be
evaluated when the script is processed and not when script is run?
-- juha
Hello,
the html file generated from tm module docbook does not have a table of
content, which is very handy to browse and have links inside the file
when referring to a function or parameter. See for comparison:
http://sip-router.org/docbook/sip-router/branch/master/modules/tm/tm.htmlhttp://sip-router.org/docbook/sip-router/branch/master/modules/lcr/lcr.html
This seems to be because of using <section> as root tag, the modules
coming from K use <book> and ToC is generated. I tried with <chapter> as
root tag and I got ToC.
Can be <section> upgraded to <chapter>/<book>? Or is used somewhere in
this form and shall have new file, like tm-book.html, that has <book> at
top of document and will be used for online docs?
Cheers,
Daniel
--
Daniel-Constantin Mierla
http://www.asipto.com/
i'm not down to 3 syntax errors from 600+. here is one of them:
while (1) {
0(7054) WARNING: <core> [cfg.y:2898]: warning in config file, line 1838, column 12: constant value in while(...)
how do i write a while statement where condition is always true?
-- juha