2 ** NetXMS - Network Management System
3 ** Copyright (C) 2003-2010 Victor Kirhenshtein
5 ** This program is free software; you can redistribute it and/or modify
6 ** it under the terms of the GNU Lesser General Public License as published
7 ** by the Free Software Foundation; either version 3 of the License, or
8 ** (at your option) any later version.
10 ** This program is distributed in the hope that it will be useful,
11 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ** GNU General Public License for more details.
15 ** You should have received a copy of the GNU Lesser General Public License
16 ** along with this program; if not, write to the Free Software
17 ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #define MAX_OBJECT_NAME 64
30 #define MAX_LOG_MSG_LENGTH 1024
31 #define MAX_SYSLOG_HOSTNAME_LEN 128
32 #define MAX_SYSLOG_TAG_LEN 33
35 * Syslog severity codes
37 #define SYSLOG_SEVERITY_EMERGENCY 0
38 #define SYSLOG_SEVERITY_ALERT 1
39 #define SYSLOG_SEVERITY_CRITICAL 2
40 #define SYSLOG_SEVERITY_ERROR 3
41 #define SYSLOG_SEVERITY_WARNING 4
42 #define SYSLOG_SEVERITY_NOTICE 5
43 #define SYSLOG_SEVERITY_INFORMATIONAL 6
44 #define SYSLOG_SEVERITY_DEBUG 7
49 #define NX_LPPF_WINDOWS_EVENT_LOG 0x0001
50 #define NX_LPPF_REPORT_UNMATCHED 0x0002
53 * Syslog message structure
57 UINT64 qwMsgId
; // NetXMS internal message ID
61 UINT32 dwSourceObject
;
62 char szHostName
[MAX_SYSLOG_HOSTNAME_LEN
];
63 char szTag
[MAX_SYSLOG_TAG_LEN
];
64 char szMessage
[MAX_LOG_MSG_LENGTH
];