Lines Matching refs:plen
1177 uint16_t pcode = 0, plen = 0; in doh_resp_decode_httpsrr() local
1204 plen = (uint16_t)((*cp << 8) + (*(cp + 1))); in doh_resp_decode_httpsrr()
1208 if(doh_decode_rdata_alpn(cp, plen, &lhrr->alpns) != CURLE_OK) in doh_resp_decode_httpsrr()
1214 if(!plen) in doh_resp_decode_httpsrr()
1216 lhrr->ipv4hints = Curl_memdup(cp, plen); in doh_resp_decode_httpsrr()
1219 lhrr->ipv4hints_len = (size_t)plen; in doh_resp_decode_httpsrr()
1222 if(!plen) in doh_resp_decode_httpsrr()
1224 lhrr->echconfiglist = Curl_memdup(cp, plen); in doh_resp_decode_httpsrr()
1227 lhrr->echconfiglist_len = (size_t)plen; in doh_resp_decode_httpsrr()
1230 if(!plen) in doh_resp_decode_httpsrr()
1232 lhrr->ipv6hints = Curl_memdup(cp, plen); in doh_resp_decode_httpsrr()
1235 lhrr->ipv6hints_len = (size_t)plen; in doh_resp_decode_httpsrr()
1237 if(plen > 0 && plen <= remaining) { in doh_resp_decode_httpsrr()
1238 cp += plen; in doh_resp_decode_httpsrr()
1239 remaining -= plen; in doh_resp_decode_httpsrr()