2003-11-12 17:31:34 +03:00
|
|
|
/*
|
|
|
|
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
|
|
*/
|
|
|
|
#ifndef SYSLOG_DAEMON_H
|
|
|
|
#define SYSLOG_DAEMON_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
|
|
|
|
|
2003-11-13 04:15:46 +03:00
|
|
|
#define SYSLOG_PORT_NAME "syslog_daemon"
|
|
|
|
|
|
|
|
#define SYSLOG_MESSAGE '_Syl'
|
|
|
|
#define SYSLOG_ADD_LISTENER 'aSyl'
|
|
|
|
#define SYSLOG_REMOVE_LISTENER 'rSyl'
|
|
|
|
|
2003-11-12 17:31:34 +03:00
|
|
|
|
|
|
|
// This message is sent from both, the POSIX syslog API and the kernel's
|
|
|
|
// dprintf() logging facility if logging to syslog was enabled.
|
|
|
|
|
|
|
|
struct syslog_message {
|
|
|
|
thread_id from;
|
|
|
|
time_t when;
|
|
|
|
int32 options;
|
2003-11-12 19:35:19 +03:00
|
|
|
int16 priority;
|
2003-11-12 17:31:34 +03:00
|
|
|
char ident[B_OS_NAME_LENGTH];
|
|
|
|
char message[1];
|
|
|
|
};
|
|
|
|
|
2003-11-12 19:35:19 +03:00
|
|
|
#define SYSLOG_PRIORITY(options) ((options) & 0x7)
|
|
|
|
#define SYSLOG_FACILITY(options) ((options) & 0x03f8)
|
2003-12-30 03:20:40 +03:00
|
|
|
#define SYSLOG_FACILITY_INDEX(options) (SYSLOG_FACILITY(options) >> 3)
|
2003-11-12 19:35:19 +03:00
|
|
|
|
2003-11-12 17:31:34 +03:00
|
|
|
#endif /* SYSLOG_DAEMON_H */
|