mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix trim of EDE text from large udp responses from spinning cpu.
This commit is contained in:
parent
c6746499c1
commit
ccbe31c21f
2 changed files with 6 additions and 0 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
22 February 2024: Wouter
|
||||||
|
- Fix trim of EDE text from large udp responses from spinning cpu.
|
||||||
|
|
||||||
20 February 2024: Yorgos
|
20 February 2024: Yorgos
|
||||||
- Merge #1010: Mention REFUSED has the TC bit set with unmatched
|
- Merge #1010: Mention REFUSED has the TC bit set with unmatched
|
||||||
allow_cookie acl in the manpage. It also fixes the code to match the
|
allow_cookie acl in the manpage. It also fixes the code to match the
|
||||||
|
|
|
||||||
|
|
@ -886,6 +886,9 @@ ede_trim_text(struct edns_option** list)
|
||||||
curr->opt_len = 2;
|
curr->opt_len = 2;
|
||||||
prev = curr;
|
prev = curr;
|
||||||
curr = curr->next;
|
curr = curr->next;
|
||||||
|
} else {
|
||||||
|
prev = curr;
|
||||||
|
curr = curr->next;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
/* continue */
|
/* continue */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue