Home
last modified time | relevance | path

Searched refs:ConfFlags (Results 1 – 5 of 5) sorted by relevance

/dports/irc/ircproxy/ircproxy-1.3.6/src/
H A Dconn_conf.h85 #define ConnConf_SetIPv6(x) ((x)->ConfFlags |= CONN_CONF_BITMASK_IPV6)
86 #define ConnConf_SetSSL(x) ((x)->ConfFlags |= CONN_CONF_BITMASK_SSL)
88 #define ConnConf_SetLogging(x) ((x)->ConfFlags |= CONN_CONF_BITMASK_LOGGING)
94 #define ConnConf_SetRawLog(x) ((x)->ConfFlags |= CONN_CONF_BITMASK_RAWLOG)
96 #define ConnConf_ClearIPv6(x) ((x)->ConfFlags &= ~CONN_CONF_BITMASK_IPV6)
97 #define ConnConf_ClearSSL(x) ((x)->ConfFlags &= ~CONN_CONF_BITMASK_SSL)
107 #define ConnConf_IsIPv6(x) ((x)->ConfFlags & CONN_CONF_BITMASK_IPV6)
108 #define ConnConf_IsSSL(x) ((x)->ConfFlags & CONN_CONF_BITMASK_SSL)
110 #define ConnConf_IsLogging(x) ((x)->ConfFlags & CONN_CONF_BITMASK_LOGGING)
116 #define ConnConf_IsRawLog(x) ((x)->ConfFlags & CONN_CONF_BITMASK_RAWLOG)
[all …]
H A Dconn_conf.c258 …PT, "yes") == FALSE) || (strcasecmp(LinePT, "1") == FALSE)) { ConnConf->ConfFlags |= CONN_CONF_BIT… in conn_conf_read()
259 …ePT, "no") == FALSE) || (strcasecmp(LinePT, "0") == FALSE)) { ConnConf->ConfFlags &= ~CONN_CONF_BI… in conn_conf_read()
268 …PT, "yes") == FALSE) || (strcasecmp(LinePT, "1") == FALSE)) { ConnConf->ConfFlags |= CONN_CONF_BIT… in conn_conf_read()
269 …ePT, "no") == FALSE) || (strcasecmp(LinePT, "0") == FALSE)) { ConnConf->ConfFlags &= ~CONN_CONF_BI… in conn_conf_read()
278 …PT, "yes") == FALSE) || (strcasecmp(LinePT, "1") == FALSE)) { ConnConf->ConfFlags |= CONN_CONF_BIT… in conn_conf_read()
288 …PT, "yes") == FALSE) || (strcasecmp(LinePT, "1") == FALSE)) { ConnConf->ConfFlags |= CONN_CONF_BIT… in conn_conf_read()
298 …PT, "yes") == FALSE) || (strcasecmp(LinePT, "1") == FALSE)) { ConnConf->ConfFlags |= CONN_CONF_BIT… in conn_conf_read()
308 …PT, "yes") == FALSE) || (strcasecmp(LinePT, "1") == FALSE)) { ConnConf->ConfFlags |= CONN_CONF_BIT… in conn_conf_read()
318 …PT, "yes") == FALSE) || (strcasecmp(LinePT, "1") == FALSE)) { ConnConf->ConfFlags |= CONN_CONF_BIT… in conn_conf_read()
397 …PT, "yes") == FALSE) || (strcasecmp(LinePT, "1") == FALSE)) { ConnConf->ConfFlags |= CONN_CONF_BIT… in conn_conf_read()
[all …]
H A Dconn.c164 ConnS_NEW->ConfFlags = ConnConf->ConfFlags; in conn_add()
H A Dmain.c381 ConnS->ConfFlags = ConnConf->ConfFlags; in main_rehash()
H A Dconn.h284 unsigned long int ConfFlags; member