source: trunk/include/sh_userfiles.h@ 577

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

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

File size: 754 bytes
Line 
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
11int sh_userfiles_init (struct mod_type * arg);
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
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);
22int sh_userfiles_check_internal(void);
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.