Lines Matching refs:channel
70 const cfg_obj_t *channel = cfg_listelt_value(element);
71 const char *channelname = cfg_obj_asstring(channel);
78 "logging channel '%s': %s", channelname,
87 * Set up a logging channel according to the named.conf data
91 channel_fromconf(const cfg_obj_t *channel, isc_logconfig_t *logconfig)
106 channelname = cfg_obj_asstring(cfg_map_getname(channel));
108 (void)cfg_map_get(channel, "file", &fileobj);
109 (void)cfg_map_get(channel, "syslog", &syslogobj);
110 (void)cfg_map_get(channel, "null", &nullobj);
111 (void)cfg_map_get(channel, "stderr", &stderrobj);
124 cfg_obj_log(channel, ns_g_lctx, ISC_LOG_ERROR,
125 "channel '%s': exactly one of file, syslog, "
199 (void)cfg_map_get(channel, "print-category", &printcat);
200 (void)cfg_map_get(channel, "print-severity", &printsev);
201 (void)cfg_map_get(channel, "print-time", &printtime);
202 (void)cfg_map_get(channel, "buffered", &buffered);
215 if (cfg_map_get(channel, "severity", &severity) == ISC_R_SUCCESS) {
294 (void)cfg_map_get(logstmt, "channel", &channels);
299 const cfg_obj_t *channel = cfg_listelt_value(element);
300 CHECK(channel_fromconf(channel, logconfig));