X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/d76ed9a966ee3d955c8ef00ecc02e643c2005e2e..5c6bff847f4904432e77dc856945f7d36669e444:/src/log.h diff --git a/src/log.h b/src/log.h index bc72686..21c7710 100644 --- a/src/log.h +++ b/src/log.h @@ -1,9 +1,9 @@ /* log.h - Diagnostic and error logging * Copyright 2000-2003 srvx Development Team * - * This file is part of srvx. + * This file is part of x3. * - * srvx is free software; you can redistribute it and/or modify + * x3 is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. @@ -23,6 +23,8 @@ #include "common.h" +#define AccountingLog "everything.log" + enum log_severity { LOG_REPLAY, /* 0 */ LOG_DEBUG, @@ -91,5 +93,7 @@ void log_report_entry(struct logEntry *match, void *extra); struct logSearch* log_discrim_create(struct userNode *service, struct userNode *user, unsigned int argc, char *argv[]); unsigned int log_entry_search(struct logSearch *discrim, entry_search_func esf, void *data); void report_entry(struct userNode *service, struct userNode *user, struct logEntry *entry); +void SyncLog(char *fmt,...); +int ShowLog(struct userNode *user, struct chanNode *cptr, char *chan, char *nuh, char *command, char *rest, int maxlines); #endif