ns-3 Direct Code Execution
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dce-syslog.h
Go to the documentation of this file.
1 
2 #ifndef DCE_SYSLOG_H
3 #define DCE_SYSLOG_H
4 
5 #include <stdarg.h>
6 
7 void
8 dce_closelog (void);
9 
10 void
11 dce_openlog (const char *ident, int logopt, int facility);
12 
13 int
14 dce_setlogmask (int maskpri);
15 
16 void
17 dce_syslog (int priority, const char *message, ...);
18 
19 void
20 dce_vsyslog (int priority, const char *message, va_list args);
21 
22 #endif // DCE_SYSLOG_H