Go to file
Norman Maurer 4af47f0ced AbstractByteBuf.setCharSequence(...) must not expand buffer
Motivation:

AbstractByteBuf.setCharSequence(...) must not expand the buffer if not enough writable space is present in the buffer to be consistent with all the other set operations.

Modifications:

- Ensure we only exand the buffer on writeCharSequence(...) but not on setCharSequence(...)
- Add unit tests.

Result:

Consistent and correct behavior.
2017-07-19 19:44:53 +02:00
.github
all
bom
buffer
codec
codec-dns
codec-haproxy
codec-http
codec-http2
codec-memcache
codec-mqtt MQTT unknown message type isn't handled as decoding error 2017-07-18 15:48:09 +02:00
codec-redis [maven-release-plugin] prepare for next development iteration 2017-07-06 13:24:06 +02:00
codec-smtp
codec-socks
codec-stomp
codec-xml
common
dev-tools
example
handler
handler-proxy
license
microbench
resolver
resolver-dns
tarball
testsuite
testsuite-autobahn [maven-release-plugin] prepare for next development iteration 2017-07-06 13:24:06 +02:00
testsuite-osgi
transport
transport-native-epoll
transport-native-kqueue
transport-native-unix-common
transport-native-unix-common-tests
transport-rxtx
transport-sctp
transport-udt [maven-release-plugin] prepare for next development iteration 2017-07-06 13:24:06 +02:00
.fbprefs Updated Find Bugs configuration 2009-03-04 10:33:09 +00:00
.gitignore
.travis.yml
CONTRIBUTING.md
LICENSE.txt
NOTICE.txt
pom.xml
README.md
run-example.sh

Netty Project

Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients.

How to build

For the detailed information about building and developing Netty, please visit the developer guide. This page only gives very basic information.

You require the following to build Netty:

Note that this is build-time requirement. JDK 5 (for 3.x) or 6 (for 4.0+) is enough to run your Netty-based application.

Branches to look

Development of all versions takes place in each branch whose name is identical to <majorVersion>.<minorVersion>. For example, the development of 3.9 and 4.0 resides in the branch '3.9' and the branch '4.0' respectively.