You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tests: internal: validate storage limit chunk size
Keep the real chunk size signed until its error result is checked. Avoid
deriving the test limit from a failed size lookup.
Signed-off-by: Michael Renner <terrorobe@github.com>
tests: integration: verify split protocol detection
Make split request boundaries observable before sending the remainder.
Cover HTTP/1 detection when the first read is shorter than four bytes.
Signed-off-by: kimonus <kimonus@users.noreply.github.com>
gzip: read magic number endian-safely in streaming decompressor
The gzip header magic was memcpy'd into a uint16_t and compared
against 0x8B1F, which only holds on little endian hosts. On big
endian targets (s390x) a valid stream was rejected with
'invalid magic bytes : 1f8b'. Read the field with read_le16() so
the comparison works regardless of host byte order.
Signed-off-by: Eduardo Silva <eduardo@chronosphere.io>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>