| /src/sys/external/bsd/ena-com/ |
| ena_com.h | 123 u8 __iomem *pbuf_dev_addr; /* LLQ address */ 190 /* This struct is to keep tracking the current location of the next llq entry */ 379 struct ena_admin_feature_llq_desc llq; member in struct:ena_com_dev_get_features_ctx 979 * @llq: LLQ feature descriptor, retrieve via ena_com_get_dev_attr_feat. 983 struct ena_admin_feature_llq_desc *llq);
|
| ena_com.c | 1925 memcpy(&get_feat_ctx->llq, &get_resp.u.llq, 1926 sizeof(get_resp.u.llq)); 1928 memset(&get_feat_ctx->llq, 0x0, sizeof(get_feat_ctx->llq)); 2972 struct ena_admin_feature_llq_desc *llq) 2977 if (llq->max_llq_num == 0) { 2982 rc = ena_com_config_llq_info(ena_dev, llq); 2992 ena_trc_err("the size of the LLQ entry is smaller than needed\n");
|
| /src/external/apache2/mDNSResponder/dist/mDNSCore/ |
| uDNS.c | 1044 // If we start the LLQ poll for the question, then the query for getting the zone data can be canceled since zone 1045 // data is not required for LLQ poll to work. 1091 optRD->u.llq = *data; 1108 // LLQ server to send events to us directly at port 5353 on that address, instead of at our mapped external NAT port. 1118 // Normally called with llq set. 1119 // May be called with llq NULL, when retransmitting a lost Challenge Response 1120 mDNSlocal void sendChallengeResponse(mDNS *const m, DNSQuestion *const q, const LLQOptData *llq) 1129 LogMsg("sendChallengeResponse: %d failed attempts for LLQ %##s", kLLQ_MAX_TRIES, q->qname.c); 1134 if (!llq) // Retransmission: need to make a new LLQOptData 1141 llq = &llqBuf 3954 LLQOptData llq; local [all...] |
| DNSCommon.c | 85 #define DNSEXTPortAsNumber 5352 // Port used for end-to-end DNS operations like LLQ, Updates with Leases, etc. 536 length += mDNS_snprintf(buffer+length, RemSpc, " LLQ"); 537 length += mDNS_snprintf(buffer+length, RemSpc, " Vers %d", opt->u.llq.vers); 538 length += mDNS_snprintf(buffer+length, RemSpc, " Op %d", opt->u.llq.llqOp); 539 length += mDNS_snprintf(buffer+length, RemSpc, " Err/Port %d", opt->u.llq.err); 540 length += mDNS_snprintf(buffer+length, RemSpc, " ID %08X%08X", opt->u.llq.id.l[0], opt->u.llq.id.l[1]); 541 length += mDNS_snprintf(buffer+length, RemSpc, " Lease %d", opt->u.llq.llqlease); 993 // If the TTL is -1 for uDNS LLQ event packet, that means "remove" 997 else // else not LLQ (standard uDNS response [all...] |
| mDNSEmbeddedAPI.h | 911 union { LLQOptData llq; mDNSu32 updatelease; OwnerOptData owner; TracerOptData tracer; TSROptData tsr; } u; member in union:__anon6076::__anon6077 916 // LLQ rdata 18 bytes (opt 2, len 2, vers 2, op 2, err 2, id 8, lease 4) 1775 // All of these states indicate that we are doing LLQ and haven't given up yet. 1789 // LLQ constants 1794 // LLQ Operation Codes 1799 // LLQ Errror Codes 1967 ZoneData *nta; // Used for getting zone data for private or LLQ query 2015 mDNSu32 ReqLease; // LLQ: seconds (relative) 2016 mDNSs32 expire; // LLQ: ticks (absolute) 2018 mDNSAddr servAddr; // Address and port learned from _dns-llq, _dns-llq-tls or _dns-query-tls SRV quer [all...] |
| /src/sys/external/bsd/ena-com/ena_defs/ |
| ena_admin_defs.h | 875 struct ena_admin_feature_llq_desc llq; member in union:ena_admin_get_feat_resp::__anon6046
|
| /src/external/mpl/bind/dist/bin/tests/system/digdelv/ |
| tests.sh | 636 echo_i "checking ednsopt LLQ prints as expected ($n)" 638 dig_with_opts @10.53.0.3 +ednsopt=llq:0001000200001234567812345678fefefefe +qr a.example >dig.out.test$n 2>&1 || ret=1 639 pat='LLQ: Version: 1, Opcode: 2, Error: 0, Identifier: 1311768465173141112, Lifetime: 4278124286$' 646 echo_i "checking ednsopt LLQ prints as expected +yaml ($n)" 648 dig_with_opts @10.53.0.3 +yaml +ednsopt=llq:0001000200001234567812345678fefefefe +qr a.example >dig.out.test$n 2>&1 || ret=1 649 $PYTHON yamlget.py dig.out.test$n 0 message query_message_data OPT_PSEUDOSECTION EDNS LLQ LLQ-VERSION >yamlget.out.test$n 2>&1 || ret=1 652 $PYTHON yamlget.py dig.out.test$n 0 message query_message_data OPT_PSEUDOSECTION EDNS LLQ LLQ-OPCODE >yamlget.out.test$n 2>&1 || ret=1 655 $PYTHON yamlget.py dig.out.test$n 0 message query_message_data OPT_PSEUDOSECTION EDNS LLQ LLQ-ERROR >yamlget.out.test$n 2>&1 || ret= [all...] |