File: sh_database.h

package info (click to toggle)
samhain 4.1.4-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,720 kB
  • sloc: ansic: 84,043; sh: 15,325; asm: 5,756; makefile: 1,614; perl: 1,231
file content (16 lines) | stat: -rw-r--r-- 501 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SH_DATABASE_H
#define SH_DATABASE_H

void sh_database_reset(void);
int sh_database_insert (char * message);

int sh_database_use_persistent (const char * str);

int sh_database_set_database (const char * str);
int sh_database_set_table (const char * str);
int sh_database_set_host (const char * str);
int sh_database_set_user (const char * str);
int sh_database_set_password (const char * str);
int sh_database_add_to_hash  (const char * str);
int set_enter_wrapper (const char * str);
#endif