vsyslog.c

来自「穿越防火墙技术代码」· C语言 代码 · 共 39 行

C
39
字号
/*port/vsyslog.cCopyright (C) 1999 Lars Brinkhoff.  See COPYING for terms and conditions.*/#include <stdio_.h>#include <syslog_.h>#include <stdarg.h>#include "config.h"#ifndef HAVE_SYSLOGvoidsyslog (int level, const char *fmt0, ...){#ifdef HAVE_VSYSLOG  va_list ap;  va_start (ap, fmt0);  vsyslog (level, fmt0, ap);  va_end (ap);#else  /* This system has neither syslog() nor vsyslog(), so do nothing. */  /* FIXME: this function could open a file and log messages in it. */#endif}#endif#ifndef HAVE_VSYSLOGvoidvsyslog (int level, const char *fmt0, va_list ap){  char buffer[512];  if (vsnprintf (buffer, sizeof buffer, fmt0, ap) > 0)    syslog (level, buffer);}#endif /* HAVE_VSYSLOG */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?