unslop some comments

This commit is contained in:
JackDoan
2026-07-14 13:38:39 -05:00
parent 5631346b07
commit 37b924945d
7 changed files with 24 additions and 63 deletions
+1 -4
View File
@@ -22,10 +22,7 @@ const udpCoalesceMaxSegs = 64
// into. IPv6 (40) + UDP (8) = 48; round up for safety.
const udpCoalesceHdrCap = 64
// udpSlot is one entry in the UDPCoalescer's ordered event queue. Same
// passthrough-vs-coalesced shape as the TCP coalescer's slot, but no
// seq/PSH/CWR bookkeeping — UDP segments only need 5-tuple + length
// matching to coalesce.
// udpSlot is one entry in the UDPCoalescer's ordered event queue.
type udpSlot struct {
passthrough bool
rawPkt []byte // borrowed when passthrough