netty5/codec-http/src/main/java/io/netty/handler/codec
Norman Maurer 1e8c0c59f1
Use allocator when constructing ByteBufHolder sub-types or use Unpool… (#9377)
Motivation:

In many places Netty uses Unpooled.buffer(0) while should use EMPTY_BUFFER. We can't change this due to back compatibility in the constructors but can use Unpooled.EMPTY_BUFFER in some cases to ensure we not allocate at all. In others we can directly use the allocator either from the Channel / ChannelHandlerContext or the request / response.

Modification:

- Use Unpooled.EMPTY_BUFFER where possible
- Use allocator where possible

Result:

Fixes #9345 for websockets and http package
2019-07-18 10:29:50 +02:00
..
http Use allocator when constructing ByteBufHolder sub-types or use Unpool… (#9377) 2019-07-18 10:29:50 +02:00
rtsp Compare HttpMethod by reference (#8815) 2019-01-30 21:17:00 +01:00
spdy Only use static Exception instances when we can ensure addSuppressed … (#9152) 2019-05-17 22:23:02 +02:00