Skyld AV  0.6
On access virus scanning for Linux
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
skyldav.h
Go to the documentation of this file.
1 /*
2  * File: skyldav.h
3  *
4  * Copyright 2013 Heinrich Schuchardt <xypron.glpk@gmx.de>
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19 
25 #ifndef SYKLDAV_H
26 #define SYKLDAV_H
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
32 const char *CONF_FILE = "/etc/skyldav.conf";
33 
34 const char *HELP_TEXT =
35  "Usage: skyldav [OPTION]\n"
36  "On access virus scanner.\n\n"
37  " -c <configfile> path to config file\n"
38  " -d daemonize\n"
39  " -h help\n"
40  " -m <n> message level\n"
41  " 1 - Debug\n"
42  " 2 - Information, default\n"
43  " 3 - Warning\n"
44  " 4 - Error\n"
45  " -v version\n\n"
46  "Licensed under the Apache License, Version 2.0.\n"
47  "Report errors to\n"
48  "Heinrich Schuchardt <xypron.glpk@gmx.de>\n";
49 
50 const char *VERSION_TEXT =
51  "On access virus scanner.\n\n"
52  "Copyright 2013-2016 Heinrich Schuchardt <xypron.glpk@gmx.de>\n\n"
53  "Licensed under the Apache License, Version 2.0 (the\n"
54  "\"License\"); you may not use this file except in compliance\n"
55  "with the License. You may obtain a copy of the License at\n\n"
56  " http://www.apache.org/licenses/LICENSE-2.0\n\n"
57  "Unless required by applicable law or agreed to in writing,\n"
58  "software distributed under the License is distributed on an\n"
59  "\"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,\n"
60  "either express or implied. See the License for the specific\n"
61  "language governing permissions and limitations under the\n"
62  "License.\n";
63 
64 const char *PID_FILE = "/var/run/skyldav/skyldav.pid";
65 
66 const char *SYSLOG_ID = "skyldav";
67 
68 #ifdef __cplusplus
69 }
70 #endif
71 
72 #endif /* SYKLDAV_H */
73 
const char * CONF_FILE
Definition: skyldav.h:32
const char * HELP_TEXT
Definition: skyldav.h:34
const char * VERSION_TEXT
Definition: skyldav.h:50
const char * PID_FILE
Definition: skyldav.h:64
const char * SYSLOG_ID
Definition: skyldav.h:66