myvsyslog.c

来自「基于TCP-WRAP原理的系统监控的c语言实现代码」· C语言 代码 · 共 34 行

C
34
字号
 /*  * vsyslog() for sites without. In order to enable this code, build with  * -Dvsyslog=myvsyslog. We use a different name so that no accidents will  * happen when vsyslog() exists. On systems with vsyslog(), syslog() is  * typically implemented in terms of vsyslog().  *   * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.  */#ifndef lintstatic char sccsid[] = "@(#) myvsyslog.c 1.1 94/12/28 17:42:33";#endif#ifdef vsyslog#include <stdio.h>#include "tcpd.h"#include "mystdarg.h"myvsyslog(severity, format, ap)int     severity;char   *format;va_list ap;{    char    fbuf[BUFSIZ];    char    obuf[3 * STRING_LENGTH];    vsprintf(obuf, percent_m(fbuf, format), ap);    syslog(severity, "%s", obuf);}#endif

⌨️ 快捷键说明

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