File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / ntp / sntp / log.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:08:38 2012 UTC (12 years, 2 months ago) by misho
Branches: ntp, MAIN
CVS tags: v4_2_6p5p0, v4_2_6p5, HEAD
ntp 4.2.6p5

    1: #ifndef LOG_H
    2: #define LOG_H
    3: 
    4: #include "ntp.h"
    5: #include "ntp_stdlib.h"
    6: #include <stdio.h>
    7: #include <stdlib.h>
    8: #include <stdarg.h>
    9: #include <syslog.h>
   10: #include <time.h>
   11: 
   12: /* syslog as ntpd does, even though we are not a daemon */
   13: #ifdef LOG_NTP
   14: # define OPENLOG_FAC	LOG_NTP
   15: #else
   16: # ifndef LOG_DAEMON
   17: #  define LOG_DAEMON	0
   18: # endif
   19: # define OPENLOG_FAC	LOG_DAEMON
   20: #endif
   21: 
   22: void init_logging(void);
   23: void open_logfile(const char *logfile);
   24: 
   25: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>