source: trunk/include/sh_userfiles.h@ 231

Last change on this file since 231 was 170, checked in by katerina, 16 years ago

Plenty of compiler warnings fixed, SQL query length fixed, doc update.

File size: 754 bytes
RevLine 
[1]1/*
2 * File: sh_userfiles.h
3 * Desc: A module for Samhain; adds files in user directories to the check list
4 * Auth: Jerry Connolly <jerry.connolly@eircom.net>
5 */
6
7#ifndef SH_USERFILES_H
8#define SH_USERFILES_H
9
10#ifdef SH_USE_USERFILES
[140]11int sh_userfiles_init (struct mod_type * arg);
[1]12int sh_userfiles_timer (time_t tcurrent);
13int sh_userfiles_check (void);
14int sh_userfiles_end (void);
15int sh_userfiles_cleanup (void);
16int sh_userfiles_reconf (void);
17
[68]18int sh_userfiles_set_uid (const char * str);
19int sh_userfiles_add_file(const char *c);
20int sh_userfiles_set_interval(const char *c);
21int sh_userfiles_set_active(const char *c);
[170]22int sh_userfiles_check_internal(void);
[1]23
24extern sh_rconf sh_userfiles_table[];
25
26
27#endif
28
29/* #ifndef SH_USERFILES_H */
30#endif
Note: See TracBrowser for help on using the repository browser.