1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
class http_file_stats : public http_file
{
private:
std::vector<client_t *> *clients;
pthread_mutex_t *clients_mutex;
pools *ppools;
statistics_global *ps;
fips140 *pfips140;
scc *pscc;
public:
http_file_stats(std::vector<client_t *> *clients_in, pthread_mutex_t *clients_mutex_in, pools *ppools, statistics_global *ps_in, fips140 *pfips140_in, scc *pscc_in);
~http_file_stats();
std::string get_url();
std::string get_meta_type();
http_bundle * do_request(http_request_t request_type, std::string request_url, http_bundle *request_details);
};
|