64 string ip = getenv(
"TCP6REMOTEIP") ? getenv(
"TCP6REMOTEIP") :
65 getenv(
"TCPREMOTEIP") ? getenv(
"TCPREMOTEIP") :
"?";
68 string logtype = session.
getEnv(
"LOG_TYPE");
71 if (logtype ==
"multilog" || logtype ==
"stderr") {
75 }
else if (logtype ==
"" || logtype ==
"syslog") {
76 const string f = session.
getEnv(
"SYSLOG_FACILITY");
82 if (f ==
"LOG_USER") facility = LOG_USER;
83 else if (f ==
"LOG_LOCAL0") facility = LOG_LOCAL0;
84 else if (f ==
"LOG_LOCAL1") facility = LOG_LOCAL1;
85 else if (f ==
"LOG_LOCAL2") facility = LOG_LOCAL2;
86 else if (f ==
"LOG_LOCAL3") facility = LOG_LOCAL3;
87 else if (f ==
"LOG_LOCAL4") facility = LOG_LOCAL4;
88 else if (f ==
"LOG_LOCAL5") facility = LOG_LOCAL5;
89 else if (f ==
"LOG_LOCAL6") facility = LOG_LOCAL6;
90 else if (f ==
"LOG_LOCAL7") facility = LOG_LOCAL7;
91 else facility = LOG_DAEMON;
110 if (getenv(
"SSL_PROTOCOL")) {
114 }
else if (getenv(
"UCSPITLS")) {
115 string ucspitls = session.
getEnv(
"UCSPITLS");
116 if (ucspitls ==
"+") stls = 1;
117 if (ucspitls ==
"-") stls = 0;
118 if (ucspitls ==
"!") stls = 2;
Declaration of the Broker class.
void assign(const std::string &fname, Operator *o)
static BrokerFactory & getInstance(void)
std::string usageString(void) const
The IODevice class provides a framework for reading and writing to device.
void setMaxOutputBufferSize(unsigned int max)
void setFlags(unsigned int f)
void clearFlags(unsigned int f)
void setOutputLevelLimit(LogLevel level)
static void addDevice(IODevice *dev)
static IODevice & getLogger(void)
static IOFactory & getInstance(void)
bool initialize(int argc, char *argv[])
void assignCommandLineArgs(void)
void setIP(const std::string &ip)
struct Binc::Session::@3 command
bool parseCommandLine(int argc, char *argv[])
static Session & getInstance(void)
std::string getEnv(const std::string &key)
Declaration of miscellaneous convertion functions.
Declaration of the IODevice class.
Declaration of the IOFactory class.
Declaration of the MultilogDevice class.
int atoi(const std::string &s_in)
void lowercase(std::string &input)
void trim(std::string &s_in, const std::string &chars=" \t\r\n")
Declaration of the StdIODevice class.
Declaration of the SyslogDevice class.