123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
-
-
-
-
-
-
-
-
-
-
-
-
-
- #pragma once
-
- #include "../CodeDweller/configuration.hpp"
-
- namespace cd = codedweller;
-
- class snf_xci {
- private:
- cd::ConfigurationElement Reader;
- void SetupReader();
- cd::ConfiguratorSetTrueOnComplete SNFWasParsed;
- bool ReadWasGood;
- void reset();
-
- public:
- snf_xci();
- snf_xci(const char* bfr, int len);
- snf_xci(std::string& input);
- bool read(const char* bfr, int len);
- bool read(std::string& input);
-
-
- bool good();
- bool bad();
-
- std::string scanner_scan_file;
- bool scanner_scan_xhdr;
- bool scanner_scan_log;
- std::string scanner_scan_ip;
- int scanner_result_code;
- std::string scanner_result_xhdr;
- std::string scanner_result_log;
-
- std::string gbudb_set_ip;
- std::string gbudb_set_type;
- int gbudb_set_bad_count;
- int gbudb_set_good_count;
-
- std::string gbudb_good_ip;
- std::string gbudb_bad_ip;
- std::string gbudb_test_ip;
- std::string gbudb_drop_ip;
-
- std::string gbudb_result_ip;
- std::string gbudb_result_type;
- double gbudb_result_probability;
- double gbudb_result_confidence;
- int gbudb_result_bad_count;
- int gbudb_result_good_count;
- std::string gbudb_result_range;
- int gbudb_result_code;
-
- std::string report_request_status_class;
- std::string report_response;
-
- std::string xci_server_command;
- std::string xci_server_command_content;
- std::string xci_server_response;
- int xci_server_response_code;
-
- std::string xci_error_message;
-
- };
-
|