message-size-increase #3

Merged
sashakoshka merged 227 commits from message-size-increase into main 2025-09-07 19:27:38 -06:00
2 changed files with 158 additions and 0 deletions
Showing only changes of commit 1b25e306a6 - Show all commits

View File

@ -10,6 +10,7 @@ const uint16Max = 0xFFFF
type Error string; const ( type Error string; const (
ErrWrongBufferLength Error = "wrong buffer length" ErrWrongBufferLength Error = "wrong buffer length"
ErrDataTooLarge Error = "data too large" ErrDataTooLarge Error = "data too large"
ErrGBEUNotTerminated Error = "GBEU not terminated"
) )
// Error implements the error interface. // Error implements the error interface.