Skip to content

v0.0.7: Fix insufficient UDP buffer size, add byte count log

Compare
Choose a tag to compare
@isobit isobit released this 15 Dec 01:42
· 20 commits to main since this release
The previous buffer size of 1024 meant that data would be dropped for
UDP packets larger than 1024 bytes, since each ReadFromUDP dequeues the
entire packet (no partial reads to be continue on the next call like in
TCP; i.e. TCP buffers bytes, UDP buffers whole packets).