Changeset 458 for trunk/include
- Timestamp:
- Aug 5, 2014, 12:26:42 PM (10 years ago)
- Location:
- trunk/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/samhain.h
r444 r458 188 188 #define SH_FFLAG_REPORTED (1<<3) 189 189 #define SH_FFLAG_SUIDCHK (1<<4) 190 #define SH_FFLAG_ENOENT (1<<5) 190 191 191 192 #define SH_FFLAG_ALLIGNORE_SET(a) (((a) & SH_FFLAG_ALLIGNORE) != 0) … … 208 209 #define SET_SH_FFLAG_SUIDCHK(a) ((a) |= SH_FFLAG_SUIDCHK) 209 210 #define CLEAR_SH_FFLAG_SUIDCHK(a) ((a) &= ~SH_FFLAG_SUIDCHK) 211 212 #define SH_FFLAG_ENOENT_SET(a) (((a) & SH_FFLAG_ENOENT) != 0) 213 #define SET_SH_FFLAG_ENOENT(a) ((a) |= SH_FFLAG_ENOENT) 214 #define CLEAR_SH_FFLAG_ENOENT(a) ((a) &= ~SH_FFLAG_ENOENT) 210 215 211 216 /* Flags for inotify -
trunk/include/sh_hash.h
r356 r458 111 111 /* Set a file flag in in-memory database 112 112 */ 113 void sh_hash_addflag (char * filename, int flag); 113 void sh_hash_set_flag (char * filename, int flag); 114 115 /* Unset a file flag in in-memory database 116 */ 117 void sh_hash_clear_flag (char * filename, int flag_to_set); 114 118 115 119 /* Compare a file with its status in the database. -
trunk/include/zAVLTree.h
r457 r458 78 78 extern int zAVL_string_set (zAVLTree ** tree, const char * key); 79 79 extern void zAVL_string_reset (zAVLTree * tree); 80 extern void zAVL_string_del (zAVLTree * tree, const char * key); 80 81 81 82 #endif
Note:
See TracChangeset
for help on using the changeset viewer.