1#ifndef FAST_PLATFORM_H
2#define FAST_PLATFORM_H
3
4// This file automatically generated for your platform (Linux, FreeBSD and others) with cmake
5
6/* Platform specific paths */
7
8std::string fastnetmon_version = "${FASTNETMON_APPLICATION_VERSION}";
9
10std::string pid_path = "/var/run/fastnetmon.pid";
11std::string global_config_path = "/usr/local/etc/fastnetmon.conf";
12
13std::string log_file_path = "/var/log/fastnetmon.log";
14std::string attack_details_folder = "/var/log/fastnetmon_attacks";
15
16// Default path to notify script
17std::string notify_script_path = "/usr/local/bin/notify_about_attack.sh";
18
19// Default path to file with networks for whitelising
20std::string white_list_path = "/usr/local/etc/networks_whitelist";
21
22// Default path to file with all networks listing
23std::string networks_list_path = "/usr/local/etc/networks_list";
24
25/* Platform specific paths end */
26
27#endif
28