netty5/codec-http/src/main/java/io/netty/handler/codec/http
2014-01-13 06:33:57 +01:00
..
multipart Fix buffer leak in AbstractMemoryHttpData 2013-12-07 11:14:08 +09:00
websocketx Replaced deprecated 'sendUnsupportedWebSocketVersionResponse()' with 'sendUnsupportedVersionResponse()' 2014-01-13 06:33:57 +01:00
ClientCookieEncoder.java Instead of complicated capacity estimation, just use thread local buffers. 2013-11-02 19:22:44 +09:00
ComposedLastHttpContent.java [#1648] Make sure trailing headers are not dropped during content encoding/decoding 2013-07-24 15:59:59 +02:00
Cookie.java Add setters and getters back to Http Objects 2013-01-30 07:42:18 +01:00
CookieDecoder.java [#1384] Cache HttpHeaderDateFormat in ThreadLocal 2013-05-23 11:39:50 +02:00
CookieEncoderUtil.java Instead of complicated capacity estimation, just use thread local buffers. 2013-11-02 19:22:44 +09:00
CookieHeaderNames.java Update license headers 2012-06-04 13:31:44 -07:00
DefaultCookie.java Prefer isEmpty() over size() == 0 or length() == 0 2012-11-10 01:24:04 +09:00
DefaultFullHttpRequest.java Respect validateHeaders when duplicate/copy the response/request 2013-11-26 08:09:14 +01:00
DefaultFullHttpResponse.java Respect validateHeaders when duplicate/copy the response/request 2013-11-26 08:09:14 +01:00
DefaultHttpContent.java Fix checkstyle 2013-11-04 19:49:19 +09:00
DefaultHttpHeaders.java Use LinkedHashSet for HttpHeaders.names() and add Javadoc about the performance of names() and entries() 2013-12-22 19:17:27 +09:00
DefaultHttpMessage.java Allow to disable validation of HTTP headers which shows a 5k perf improvement here when disabled 2013-11-14 07:45:03 +01:00
DefaultHttpObject.java Add setters and getters back to Http Objects 2013-01-30 07:42:18 +01:00
DefaultHttpRequest.java [#2090] Correctly format DefaultHttpRequest#toString() 2014-01-06 17:34:46 +01:00
DefaultHttpResponse.java Allow to disable validation of HTTP headers which shows a 5k perf improvement here when disabled 2013-11-14 07:45:03 +01:00
DefaultLastHttpContent.java Backport HTTP encoding / decoding optimizations which were introduced by #2007. 2013-11-28 10:46:27 +01:00
FullHttpMessage.java Update FullHttpMessage.java 2013-04-08 21:12:19 +02:00
FullHttpRequest.java Change ReferenceCounted.retain* to return itself and so allow method chaining 2013-02-14 07:39:44 +01:00
FullHttpResponse.java Change ReferenceCounted.retain* to return itself and so allow method chaining 2013-02-14 07:39:44 +01:00
HttpClientCodec.java Also allow to disable header validation via HttpServerCodec and HttpClientCodec. Related to [#1981] 2013-11-14 08:19:49 +01:00
HttpConstants.java Update license headers 2012-06-04 13:31:44 -07:00
HttpContent.java [#1533] Introduce ByteBufHolder.duplicate() and make use of it in DefaultChannelGroup.write(...) 2013-07-06 21:17:51 +02:00
HttpContentCompressor.java Revamp the core API to reduce memory footprint and consumption 2013-06-10 16:10:39 +09:00
HttpContentDecoder.java [#1648] Make sure trailing headers are not dropped during content encoding/decoding 2013-07-24 15:59:59 +02:00
HttpContentDecompressor.java [#2005] Allow to use HttpContentDecompressor in strict mode 2013-11-26 08:22:01 +01:00
HttpContentEncoder.java [#2006] Correctly handle HttpMessage / HttpContent implementations 2013-11-26 10:57:24 +01:00
HttpHeaderDateFormat.java Fix checkstyle 2013-07-07 12:39:29 +09:00
HttpHeaderEntity.java Backport HTTP encoding / decoding optimizations which were introduced by #2007. 2013-11-28 10:46:27 +01:00
HttpHeaders.java Use LinkedHashSet for HttpHeaders.names() and add Javadoc about the performance of names() and entries() 2013-12-22 19:17:27 +09:00
HttpMessage.java Remove apiviz tags - we are focusing on user guide instead and putting diagrams there 2013-02-14 12:09:16 -08:00
HttpMethod.java Backport HTTP encoding / decoding optimizations which were introduced by #2007. 2013-11-28 10:46:27 +01:00
HttpObject.java Add setters and getters back to Http Objects 2013-01-30 07:42:18 +01:00
HttpObjectAggregator.java Fix a bug where HttpObjectAggregator fails to send a '100 Continue' response 2013-12-16 21:44:44 +09:00
HttpObjectDecoder.java Fix a bug where HttpObjectDecoder produces LastHttpContent after entering BAD_MESSAGE state 2014-01-10 16:17:08 +09:00
HttpObjectEncoder.java Merge buffers for performance reasons if possible when encode http requests/responses. 2013-11-28 13:48:00 +01:00
HttpRequest.java Add setters and getters back to Http Objects 2013-01-30 07:42:18 +01:00
HttpRequestDecoder.java Allow to disable validation of HTTP headers which shows a 5k perf improvement here when disabled 2013-11-14 07:45:03 +01:00
HttpRequestEncoder.java Backport HTTP encoding / decoding optimizations which were introduced by #2007. 2013-11-28 10:46:27 +01:00
HttpResponse.java Add setters and getters back to Http Objects 2013-01-30 07:42:18 +01:00
HttpResponseDecoder.java Allow to disable validation of HTTP headers which shows a 5k perf improvement here when disabled 2013-11-14 07:45:03 +01:00
HttpResponseEncoder.java Backport HTTP encoding / decoding optimizations which were introduced by #2007. 2013-11-28 10:46:27 +01:00
HttpResponseStatus.java Backport HTTP encoding / decoding optimizations which were introduced by #2007. 2013-11-28 10:46:27 +01:00
HttpServerCodec.java Also allow to disable header validation via HttpServerCodec and HttpClientCodec. Related to [#1981] 2013-11-14 08:19:49 +01:00
HttpVersion.java Backport HTTP encoding / decoding optimizations which were introduced by #2007. 2013-11-28 10:46:27 +01:00
LastHttpContent.java Fix a bug where HttpObjectDecoder produces LastHttpContent after entering BAD_MESSAGE state 2014-01-10 16:17:08 +09:00
package-info.java Remove apiviz tags - we are focusing on user guide instead and putting diagrams there 2013-02-14 12:09:16 -08:00
QueryStringDecoder.java [#1833] Replace ; with & only in the QueryString and not the whole URI 2013-09-14 11:59:58 +02:00
QueryStringEncoder.java Remove apiviz tags - we are focusing on user guide instead and putting diagrams there 2013-02-14 12:09:16 -08:00
ServerCookieEncoder.java Instead of complicated capacity estimation, just use thread local buffers. 2013-11-02 19:22:44 +09:00