2 * Decide whether the 'host name' or 'serial line' field of a Conf is
3 * important, based on which protocol it has selected.
8 char const *conf_dest(Conf
*conf
)
10 if (conf_get_int(conf
, CONF_protocol
) == PROT_SERIAL
)
11 return conf_get_str(conf
, CONF_serline
);
13 return conf_get_str(conf
, CONF_host
);