/* * FTP/HTTP daemon * process.h Copyright (C) 1998 Alex Belits * * This source/code is public free; you can distribute it and/or modify * it under terms of the GNU General Public License (published by the * Free Software Foundation) either version two of this License, or any * later version. * */ #ifndef INCLUDED_LOG_H #define INCLUDED_LOG_H 1 #include "sockobj.h" void ProcessLog(void); void LogMessage(ControlFTPServerApp *clientapp,ApplicationRequest *request, ApplicationInstance *ainst,struct timeval *tv, int level,char *msgtype,char *message,__s32 xclientid=0,__s32 xreqid=0); void LogMessage(ControlFTPServerApp *clientapp,ApplicationRequest *request, ApplicationInstance *ainst,struct timeval *tv, int level,List *messages,__s32 xclientid=0,__s32 xreqid=0); void RelayLogMessage(char *relaybuffer,int len); #endif