]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Added NTReportError to use when the Event Log is not open for updates
authorDanny Mayer <source@isc.org>
Thu, 1 Aug 2002 03:43:31 +0000 (03:43 +0000)
committerDanny Mayer <source@isc.org>
Thu, 1 Aug 2002 03:43:31 +0000 (03:43 +0000)
lib/isc/win32/syslog.c
lib/isc/win32/syslog.h

index 15e4291722fdf6771a13c22ab95ebcca170522c5..37750333edee50ce9c1f7cd7464a594b4ebf395c 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: syslog.c,v 1.4 2001/11/27 00:56:24 gson Exp $ */
+/* $Id: syslog.c,v 1.5 2002/08/01 03:43:31 mayer Exp $ */
 
 #include <config.h>
 
@@ -78,7 +78,7 @@ isc_syslog_facilityfromstring(const char *str, int *facilityp) {
        REQUIRE(str != NULL);
        REQUIRE(facilityp != NULL);
 
-       for (i = 0; facilities[i].strval != NULL; i++) {
+       for (i = 0 ; facilities[i].strval != NULL ; i++) {
                if (strcasecmp(facilities[i].strval, str) == 0) {
                        *facilityp = facilities[i].val;
                        return (ISC_R_SUCCESS);
@@ -159,4 +159,20 @@ InitNTLogging(FILE *stream, int debug) {
        log_stream = stream;
        ModifyLogLevel(debug);
 }
+/*
+ * This function is for reporting errors to the application
+ * event log in case the regular syslog is not available
+ * mainly during startup. It should not be used under normal
+ * circumstances.
+ */
+void
+NTReportError(const char *name, const char *str) {
+       HANDLE hNTAppLog = NULL;
+
+       hNTAppLog = RegisterEventSource(NULL, name);
+
+       ReportEvent(hNTAppLog, EVENTLOG_ERROR_TYPE, 0,
+                   BIND_ERR_MSG, NULL, 1, 0,(LPCSTR *) str, NULL);
 
+       DeregisterEventSource(hNTAppLog);
+}
\ No newline at end of file
index b4d62cdb4485803e24d80be3603913c1b8fde208..c423605f9aa379d5229ebf984e3b9b95ecee87a2 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: syslog.h,v 1.3 2001/07/09 21:06:20 gson Exp $ */
+/* $Id: syslog.h,v 1.4 2002/08/01 03:43:31 mayer Exp $ */
 
 #ifndef _SYSLOG_H
 #define _SYSLOG_H
@@ -66,6 +66,8 @@ ModifyLogLevel(int level);
 void
 InitNTLogging(FILE *, int);
 
+void
+NTReportError(const char *, const char *);
 /*
  * Include the event codes required for logging.
  */