Home
last modified time | relevance | path

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

/freebsd/contrib/unbound/sldns/
H A Dstr2wire.c1204 char *next_ip_str; in sldns_str2wire_svcbparam_ipv4hint() local
1226 if (!(next_ip_str = strchr(val, ','))) { in sldns_str2wire_svcbparam_ipv4hint()
1233 } else if (next_ip_str - val >= (int)sizeof(ip_str)) in sldns_str2wire_svcbparam_ipv4hint()
1237 memcpy(ip_str, val, next_ip_str - val); in sldns_str2wire_svcbparam_ipv4hint()
1238 ip_str[next_ip_str - val] = 0; in sldns_str2wire_svcbparam_ipv4hint()
1244 val = next_ip_str + 1; in sldns_str2wire_svcbparam_ipv4hint()
1259 char *next_ip_str; in sldns_str2wire_svcbparam_ipv6hint() local
1281 if (!(next_ip_str = strchr(val, ','))) { in sldns_str2wire_svcbparam_ipv6hint()
1288 } else if (next_ip_str - val >= (int)sizeof(ip_str)) in sldns_str2wire_svcbparam_ipv6hint()
1292 memcpy(ip_str, val, next_ip_str - val); in sldns_str2wire_svcbparam_ipv6hint()
[all …]