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.c1203 char *next_ip_str; in sldns_str2wire_svcbparam_ipv4hint() local
1225 if (!(next_ip_str = strchr(val, ','))) { in sldns_str2wire_svcbparam_ipv4hint()
1232 } else if (next_ip_str - val >= (int)sizeof(ip_str)) in sldns_str2wire_svcbparam_ipv4hint()
1236 memcpy(ip_str, val, next_ip_str - val); in sldns_str2wire_svcbparam_ipv4hint()
1237 ip_str[next_ip_str - val] = 0; in sldns_str2wire_svcbparam_ipv4hint()
1243 val = next_ip_str + 1; in sldns_str2wire_svcbparam_ipv4hint()
1258 char *next_ip_str; in sldns_str2wire_svcbparam_ipv6hint() local
1280 if (!(next_ip_str = strchr(val, ','))) { in sldns_str2wire_svcbparam_ipv6hint()
1287 } else if (next_ip_str - val >= (int)sizeof(ip_str)) in sldns_str2wire_svcbparam_ipv6hint()
1291 memcpy(ip_str, val, next_ip_str - val); in sldns_str2wire_svcbparam_ipv6hint()
[all …]