X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Fconfig%2Frootcheck-config.h;fp=src%2Fconfig%2Frootcheck-config.h;h=a365305bda0fee14730d5f8666ea92b70fd05350;hp=7a45baf0ad5861946d0b2eba4d527713b318e794;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hpb=927951d1c1ad45ba9e7325f07d996154a91c911b diff --git a/src/config/rootcheck-config.h b/src/config/rootcheck-config.h old mode 100755 new mode 100644 index 7a45baf..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. * @@ -9,16 +7,13 @@ * 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,12 +30,16 @@ typedef struct _rkconfig int scanall; int readall; int disabled; + short skip_nfs; + +#ifdef OSSECHIDS + unsigned int tsleep; +#endif /* OSSECHIDS */ int time; int queue; - - struct _checks - { + + struct _checks { short rc_dev; short rc_files; short rc_if; @@ -49,23 +48,17 @@ typedef struct _rkconfig short rc_sys; short rc_trojans; - #ifdef WIN32 - +#ifdef WIN32 short rc_winaudit; short rc_winmalware; short rc_winapps; - - #else - +#else short rc_unixaudit; - - #endif - +#endif } checks; -}rkconfig; +} rkconfig; -#endif +#endif /* __CROOTCHECK_H */ -/* EOF */