X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fconfig%2Frootcheck-config.h;h=a365305bda0fee14730d5f8666ea92b70fd05350;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hp=7e82693756cd2de078b133494bc88c9632a97087;hpb=301048b51990573e58a30dc4a5bb4ec285cad554;p=ossec-hids.git diff --git a/src/config/rootcheck-config.h b/src/config/rootcheck-config.h old mode 100755 new mode 100644 index 7e82693..a365305 --- a/src/config/rootcheck-config.h +++ b/src/config/rootcheck-config.h @@ -1,5 +1,3 @@ -/* $OSSEC, rootcheck.h, v0.1, 2005/10/03, Daniel B. Cid$ */ - /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. * @@ -8,17 +6,14 @@ * License (version 2) as published by the FSF - Free Software * Foundation */ - #ifndef __CROOTCHECK_H - #define __CROOTCHECK_H #include -typedef struct _rkconfig -{ - char *workdir; +typedef struct _rkconfig { + const char *workdir; char *basedir; char *rootkit_files; char *rootkit_trojans; @@ -35,11 +30,35 @@ typedef struct _rkconfig int scanall; int readall; int disabled; + short skip_nfs; + +#ifdef OSSECHIDS + unsigned int tsleep; +#endif /* OSSECHIDS */ int time; int queue; -}rkconfig; + struct _checks { + short rc_dev; + short rc_files; + short rc_if; + short rc_pids; + short rc_ports; + short rc_sys; + short rc_trojans; + +#ifdef WIN32 + short rc_winaudit; + short rc_winmalware; + short rc_winapps; +#else + short rc_unixaudit; #endif -/* EOF */ + } checks; + +} rkconfig; + +#endif /* __CROOTCHECK_H */ +