Home
last modified time | relevance | path

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

/external/mdnsresponder/mDNSShared/
Ddnsextd.c759 char *vlogmsg = NULL; in SuccessfulUpdateTransaction() local
762 if (!request || !reply) { vlogmsg = "NULL message"; goto failure; } in SuccessfulUpdateTransaction()
763 …if (request->len < sizeof(DNSMessageHeader) || reply->len < sizeof(DNSMessageHeader)) { vlogmsg = … in SuccessfulUpdateTransaction()
767 { vlogmsg = "Request opcode not an update"; goto failure; } in SuccessfulUpdateTransaction()
770 …if ((reply->msg.h.flags.b[1] & kDNSFlag1_RC_Mask)) { vlogmsg = "Reply contains non-zero rcode"; g… in SuccessfulUpdateTransaction()
772 { vlogmsg = "Reply opcode not an update response"; goto failure; } in SuccessfulUpdateTransaction()
778 VLog("Request %s: %s", inet_ntop(AF_INET, &request->src.sin_addr, buf, 32), vlogmsg); in SuccessfulUpdateTransaction()