Home
last modified time | relevance | path

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

/systemd-251/src/resolve/
Dresolved-dns-packet.h192 int dns_packet_new(DnsPacket **p, DnsProtocol protocol, size_t min_alloc_dsize, size_t max_size);
193 int dns_packet_new_query(DnsPacket **p, DnsProtocol protocol, size_t min_alloc_dsize, bool dnssec_c…
Dresolved-dns-packet.c41 size_t min_alloc_dsize, in dns_packet_new() argument
56 if (min_alloc_dsize > DNS_PACKET_SIZE_MAX) in dns_packet_new()
59 min_alloc_dsize); in dns_packet_new()
65 if (min_alloc_dsize < DNS_PACKET_HEADER_SIZE) in dns_packet_new()
68 a = min_alloc_dsize; in dns_packet_new()
147 int dns_packet_new_query(DnsPacket **ret, DnsProtocol protocol, size_t min_alloc_dsize, bool dnssec… in dns_packet_new_query() argument
153 r = dns_packet_new(&p, protocol, min_alloc_dsize, DNS_PACKET_SIZE_MAX); in dns_packet_new_query()