Home
last modified time | relevance | path

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

/dports/net/mDNSResponder/mDNSResponder-1310.140.1/Clients/dnssdutil/
H A DDNSMessage.c1593 Boolean isQU; in DNSMessageToString() local
1598 isQU = ( isMDNS && ( qclass & kMDNSClassUnicastResponseBit ) ) ? true : false; in DNSMessageToString()
1616 if( isMDNS ) _AppendF( " %s", isQU ? "QU" : "QM" ); in DNSMessageToString()
1630 _AppendF( " %2s", isMDNS ? ( isQU ? "QU" : "QM" ) : "" ); in DNSMessageToString()
H A Ddnssdutil.c7170 Boolean isQU; // True if the query is QU, i.e., requests unicast responses. member
7209 context->isQU = gMDNSQuery_IsQU ? true : false; in MDNSQueryCmd()
7229 …gMDNSQuery_SourcePort ? gMDNSQuery_SourcePort : ( context->isQU ? context->localPort : kMDNSPort ), in MDNSQueryCmd()
7230 ifname, context->ifIndex, !context->isQU, &context->localPort, &sockV4 ); in MDNSQueryCmd()
7239 …gMDNSQuery_SourcePort ? gMDNSQuery_SourcePort : ( context->isQU ? context->localPort : kMDNSPort ), in MDNSQueryCmd()
7240 ifname, context->ifIndex, !context->isQU, &context->localPort, &sockV6 ); in MDNSQueryCmd()
7248 …context->qtype, context->isQU ? ( kDNSServiceClass_IN | kMDNSClassUnicastResponseBit ) : kDNSServi… in MDNSQueryCmd()
7441 FPrintF( stdout, "Class: IN (%s)\n", inContext->isQU ? "QU" : "QM" ); in MDNSQueryPrintPrologue()