mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2026-02-14 23:19:01 +00:00
ed2ba5b07afb3f480abd3103ffc284ee085a0432
In the DNS TCP code, there are a couple of places where we have a buffer containing a message which we need to send via TCP. The DNS protocol is that this is sent as <16-bit length in network order><message> Making two write calls, one for the length and one for the message causes the TCP stack to send two packets, one for each. A single packet containing both is preferable from a performance POV. Implement a scatter-gather version of our read_write() wrapper and use it where necessary to send TCP DNS messages.
Description
No description provided
Languages
C
94.3%
Perl
2.2%
HTML
1.2%
Shell
1.1%
Makefile
0.6%
Other
0.6%