X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Fconfig%2Factive-response.h;fp=src%2Fconfig%2Factive-response.h;h=3ed487221c7c9c8ca1bd73647b38e09c89123480;hp=c9ca7034bd775b20f1af9ff9048679437f431d3d;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hpb=927951d1c1ad45ba9e7325f07d996154a91c911b diff --git a/src/config/active-response.h b/src/config/active-response.h old mode 100755 new mode 100644 index c9ca703..3ed4872 --- a/src/config/active-response.h +++ b/src/config/active-response.h @@ -1,6 +1,3 @@ -/* @(#) $Id: ./src/config/active-response.h, 2011/09/08 dcid Exp $ - */ - /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. * @@ -10,25 +7,20 @@ * Foundation */ - #ifndef _CAR__H #define _CAR__H - -/** Active response commands **/ -typedef struct _ar_command -{ +/* Active response commands */ +typedef struct _ar_command { int expect; int timeout_allowed; char *name; char *executable; -}ar_command; +} ar_command; - -/** Active response data **/ -typedef struct _ar -{ +/* Active response data */ +typedef struct _ar { int timeout; int location; int level; @@ -39,10 +31,10 @@ typedef struct _ar char *rules_group; ar_command *ar_cmd; -}active_response; - +} active_response; /* Active response flag */ -int ar_flag; +extern int ar_flag; + +#endif /* _CAR__H */ -#endif