Home | History | Annotate | Download | only in syslogd

Lines Matching refs:recvhost

1273 	buffer->recvhost = strdup(hname);
1495 buffer->recvhost = strdup(hname);
1668 if (!buffer->recvhost)
1669 buffer->recvhost = LocalFQDN;
1735 buffer->recvhost = buffer->host = LocalFQDN;
1909 buffer->timestamp, buffer->recvhost, buffer->sd, buffer->msg);
1955 /* but fallback to recvhost if host is NULL */
1956 h = (buffer->host != NULL) ? buffer->host : buffer->recvhost;
2079 if (!buffer->host && !buffer->recvhost)
2116 hostname = (buffer->host ? buffer->host : buffer->recvhost);
2119 /* if the previous BSD output format with "host [recvhost]:"
2121 * between buffer->host and buffer->recvhost
2384 (buffer->host ? buffer->host : buffer->recvhost),
4597 /* small optimizations: the host/recvhost may point to the
4601 if (buf->recvhost != buf->host
4602 && buf->recvhost != LocalHostName
4603 && buf->recvhost != LocalFQDN
4604 && buf->recvhost != oldLocalFQDN)
4605 FREEPTR(buf->recvhost);
4639 if (qentry->msg->recvhost
4640 && qentry->msg->recvhost != LocalHostName
4641 && qentry->msg->recvhost != LocalFQDN
4642 && qentry->msg->recvhost != oldLocalFQDN)
4643 sum += strlen(qentry->msg->recvhost)+1;