Module: sip-router Branch: master Commit: ff10fef4b398b4bc2f206559af9e1ad2fb3b8342 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ff10fef4...
Author: Elena-Ramona Modroiu ramona@asipto.com Committer: Elena-Ramona Modroiu ramona@asipto.com Date: Thu Jun 30 11:04:22 2011 +0200
xlog(k): new module parameter log_facility
- allow to specify syslog facility for messages printed by xlog module - xlog messages can be diverted now to special file via syslog conf
---
modules_k/xlog/xlog.c | 20 +++++++++++++++++--- 1 files changed, 17 insertions(+), 3 deletions(-)
diff --git a/modules_k/xlog/xlog.c b/modules_k/xlog/xlog.c index fc406ec..0412b25 100644 --- a/modules_k/xlog/xlog.c +++ b/modules_k/xlog/xlog.c @@ -49,6 +49,8 @@ char *_xlog_prefix = "<script>: "; static int buf_size=4096; static int force_color=0; static int long_format=0; +static int xlog_facility = DEFAULT_FACILITY; +static char *xlog_facility_name = NULL;
/** module functions */ static int mod_init(void); @@ -110,6 +112,7 @@ static param_export_t params[]={ {"force_color", INT_PARAM, &force_color}, {"long_format", INT_PARAM, &long_format}, {"prefix", STR_PARAM, &_xlog_prefix}, + {"log_facility", STR_PARAM, &xlog_facility_name}, {0,0,0} };
@@ -135,6 +138,17 @@ struct module_exports exports= { */ static int mod_init(void) { + int lf; + if (xlog_facility_name!=NULL) { + lf = str2facility(xlog_facility_name); + if (lf != -1) { + xlog_facility = lf; + } else { + LM_ERR("invalid syslog facility %s\n", xlog_facility_name); + return -1; + } + } + _xlog_buf = (char*)pkg_malloc((buf_size+1)*sizeof(char)); if(_xlog_buf==NULL) { @@ -156,15 +170,15 @@ static inline int xlog_helper(struct sip_msg* msg, xl_msg_t *xm, txt.s = _xlog_buf; if(line>0) if(long_format==1) - LOG_(DEFAULT_FACILITY, level, _xlog_prefix, + LOG_(xlog_facility, level, _xlog_prefix, "%s:%d:%.*s", (xm->a)?(((xm->a->cfile)?xm->a->cfile:"")):"", (xm->a)?xm->a->cline:0, txt.len, txt.s); else - LOG_(DEFAULT_FACILITY, level, _xlog_prefix, + LOG_(xlog_facility, level, _xlog_prefix, "%d:%.*s", (xm->a)?xm->a->cline:0, txt.len, txt.s); else - LOG_(DEFAULT_FACILITY, level, _xlog_prefix, + LOG_(xlog_facility, level, _xlog_prefix, "%.*s", txt.len, txt.s); return 1; }