/usr/include/bitz-server/config.h is in libicap-dev 1.0.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | /*
* bitz-server, An ICAP server implementation in C++
* Copyright (C) 2012 Uditha Atukorala
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef BITZ_CONFIG_H
#define BITZ_CONFIG_H
#include <string>
#include <libconfig.h++>
#ifndef BITZ_SERVER_CONFIG_FILE
#define BITZ_SERVER_CONFIG_FILE "/etc/bitz/bitz-server.conf"
#endif
namespace bitz {
struct modules_config_t {
std::string name;
std::string module;
};
struct req_handlers_config_t {
std::string name;
std::string class_name;
unsigned int modules_count;
modules_config_t * modules;
};
struct config_t {
int port;
int max_workers;
int max_worker_requests;
int comm_timeout;
std::string pid_file;
std::string log_file;
std::string log_category;
unsigned int req_handlers_count;
req_handlers_config_t * req_handlers;
};
class Config {
public:
static Config &instance() {
static Config config;
return config;
}
const config_t &initialise( const std::string &config_file = BITZ_SERVER_CONFIG_FILE );
const config_t &configs();
/**
* Returns module specific config value (or NULL string if not found)
* Note: This method should be only used my the pluggable modules and not
* by the core code.
*
* @param module module name
* @param config config name
* @return module config value
*/
const std::string module_config( const std::string &module, const std::string &config ) throw();
private:
config_t _config;
libconfig::Config * _lconfig;
Config();
~Config();
Config( Config const © );
Config &operator=( const Config © );
void read_req_handler_configs() throw();
};
} /* end of namespace bitz */
#endif /* !BITZ_CONFIG_H */
|