Jeff Pinner
5b46cb4cfe
ignore HttpOnly as a cookie name instead of throwing exception
2011-11-09 09:51:26 -08:00
Norman Maurer
9c1950606b
Merge branch '3.2' of ssh://git@github.com/netty/netty.git into 3.2
2011-11-06 20:18:18 +01:00
Norman Maurer
dd8ec0ea30
release replaying decoder cumulation buffer after firing upstream
2011-11-06 20:17:21 +01:00
Norman Maurer
a555949cb5
fix compareTo
2011-11-06 07:55:30 +01:00
Norman Maurer
e4bd678846
Remove not used SerialVersionUID fields
2011-11-03 20:30:44 +01:00
Norman Maurer
a91c56c84d
Remove iostream support from 3.2 branch. This will only go into 4.x
2011-11-03 19:29:22 +01:00
Norman Maurer
24e0b01e8d
Release the cumulation buffer after firing upstream so we don't end up
...
with a "leak" because of a very big ChannelBuffer. This patch is
extracted of the pull request 39. Thanks to arya for the patch. See
NETTY-453
2011-11-03 11:29:39 +01:00
Trustin Lee
5860ce337d
Merge branch '3.2' of git://github.com/trustin/netty into 3.2
2011-10-31 15:23:25 -07:00
Trustin Lee
0f8cecc907
Upgrade to JUnit 4.10
2011-10-31 15:20:25 -07:00
Norman Maurer
d742a11c25
Merge pull request #22 from pfisterer/master. Which adds a
...
IOStreamChannelFactory which can be used to connect to InputStream and
OutputStream
2011-10-29 20:18:10 +02:00
norman
b1c27063a2
Make sure the fireExceptionCaught will not get fired while holding a
...
lock. This will prevent a deadlock which you may see if you have an
ChannelHandler that will trigger Channel.close() on an Exception. See
NETTY-443
2011-10-25 11:52:27 +02:00
norman
6728766158
ChannelLocal nows removes Channel instances from itself once the Channel
...
was closed. This is configurable via a constructor parameter to allow
the user to choose what to do. The default is to not remove the Channel
from the ChannelLocal to not break usage which depends on the "old"
behavior. See NETTY-447
2011-10-24 08:32:17 +02:00
Trustin Lee
322f0ccae4
[maven-release-plugin] prepare for next development iteration
2011-10-22 22:39:15 -07:00
Trustin Lee
20df06911e
[maven-release-plugin] prepare release netty-3.2.6.Final
2011-10-22 22:39:07 -07:00
Trustin Lee
e3386736c0
Fix NETTY-432 HttpContentEncoder should not encode if Content-Encoding is set already and it is not 'identity'
2011-10-22 22:08:49 -07:00
Trustin Lee
a67cdaeb48
Clean up FileRegion and its implementation changes
...
* Fix broken javadoc tags
* Remove unnecessary public modifier
* Reorder method
* Make releaseAfterTransfer immutable
2011-10-22 21:47:07 -07:00
Norman Maurer
dbccc9e52b
Merge pull request #34 from normanmaurer/3.2
...
Only release FileRegion if configured to do so. See NETTY-440
2011-10-22 11:31:27 -07:00
Norman Maurer
2a4b91b59b
Only release FileRegion after transfer was done if its configured todo
...
so. The default is false to be sure we are compatible with earlier 3.2
releases. This should be changed to default true in the master branch.
See NETTY-440
2011-10-22 14:56:53 +02:00
Trustin Lee
4b9b421af2
NETTY-439 Call channelBound/Connected from worker
...
* Move channelBound() to RegisterTask
* Simplify the if block in RegisterTask
2011-10-21 15:42:02 -07:00
Trustin Lee
beadadecf7
Fix NETTY-445 Memory leak in SslHandler
...
* Ensure SSLEngine.closeInbound() and closeOutbound() is called on
handshake failure.
* Ensure connection is closed when a closure request is issued and
handshake failed.
2011-10-21 13:54:07 -07:00
Norman Maurer
ce1643c187
Merge pull request #30 from normanmaurer/3.2
...
Move channelConnected handling to worker thread + javadocs
2011-10-21 08:48:16 -07:00
norman
48c6793d30
Revert invalid fix
2011-10-17 15:56:38 +02:00
norman
4be22a42ef
ThreadNameDeterminer.CURRENT return the right name now. Was returning
...
null before all the time
2011-10-17 15:49:29 +02:00
norman
35401caac4
Remove unused imports and fix warnings
2011-10-13 12:08:06 +02:00
norman
fd1d11ec39
Add support for FileRegion in OIOWorker.
2011-10-12 17:09:02 +02:00
norman
2d25998eb4
Make sure FileRegion.releaseExternalResources() is called after the
...
write was done. See NETTY-440
2011-10-12 15:07:53 +02:00
norman
fb408778d1
Only handle the channelConnected in the worker thread. The channelOpen
...
and channelBound was moved back to the boss thread. This was done after
reading NETTY-154
2011-10-12 13:15:06 +02:00
norman
cb2e047f1d
Remove code which I committed by mistake
2011-10-12 13:04:37 +02:00
norman
bbdc2032f0
Make sure the ChannelOpen, ChannelBound and ChannelConnected events get
...
fired from within an IO-Worker Thread. This makes sure the Boss-Thread
will not get blocked by any user action
2011-10-12 13:02:50 +02:00
norman
28120aa778
Add javadoc entry to explain that some events are executed in the boss
...
thread.
2011-10-12 10:35:12 +02:00
norman
203a104889
Merge branch '3.2' of ssh://git@github.com/normanmaurer/netty.git into 3.2
2011-10-12 10:15:22 +02:00
Trustin Lee
ba72bf7235
NETTY-438 Re-enable SSL re-negotiation by default
...
* Re-enabled renegotiation
* Updated Javadoc
2011-10-10 20:47:32 +09:00
Norman Maurer
b89487c445
Add patch of NETTY-434 to the mix to fix Deadlock in
...
ChunkedWriteHandler. This patch was not written by me...
2011-10-10 18:00:32 +09:00
Evan Meagher
256621246c
Fix wording in "Summary" section.
2011-10-10 17:42:15 +09:00
Evan Meagher
f0b30aa8e1
Fix wording in "Advanced Components for More Rapid Development" section.
2011-10-10 17:42:07 +09:00
Evan Meagher
95b127748e
Fix wording in "Interceptor Chain Pattern" section.
2011-10-10 17:42:00 +09:00
Evan Meagher
56d6217b53
Fix wording in "Universal Asynchronous I/O API" section.
2011-10-10 17:41:52 +09:00
Evan Meagher
d1a15c9aff
Fix wording in "Rich Buffer Data Structure" section.
2011-10-10 17:41:45 +09:00
Norman Maurer
ed30037098
Add patch of NETTY-434 to the mix to fix Deadlock in
...
ChunkedWriteHandler. This patch was not written by me...
2011-09-30 22:14:36 +02:00
Trustin Lee
a78d37460c
Fixed a compilation error in the example
2011-08-26 13:24:17 +09:00
Trustin Lee
b0d0502413
Added a TooLongFrameException recovery test for DelimiterBasedFrameDecoder
2011-08-19 11:11:16 +09:00
Trustin Lee
3effb0d1b0
NETTY-435 LengthFieldBasedFrameDecoder fails to recover from TooLongFrameException
...
* Fixed a bug where TooLongFrameException is not raised immediately when the large frame was fully decoded at the first attempt
* Fixed a bug where LengthFieldBasedFrameDecoder does not reset its state completely after raising TooLongFrameException
2011-08-19 11:05:24 +09:00
Trustin Lee
58cc6aec86
NETTY-431 HashedWheelTimer's TimerTask may execute after call to Timeout.cancel()
...
* Replaced a volatile boolean flag and system date access with an atomic integer flag.
2011-08-12 14:03:48 +09:00
Trustin Lee
1345a00a1a
NETTY-430 ChunkedWriteHandler NPE
2011-08-12 13:39:18 +09:00
Trustin Lee
7eb39aaf93
NETTY-429 IllegalArgumentException when an HTTP server sends a '100 Continue' response to HttpContentDecoder.
...
* Fixed a silly coding mistake where I sent the event in the opposite direction
2011-08-03 21:26:31 +09:00
Trustin Lee
b969706832
NETTY-428 SslHandler does not trigger an exceptionCaught event for some handshake failure cases.
...
* Made sure SslHandler.handshake() and SslHandler.close() trigger an exceptionCaught event when failed
2011-08-02 15:39:25 +09:00
Trustin Lee
5f19f4c0b6
SSLEngine.beginHandshake() can throw a RuntimeException.
2011-08-02 15:09:35 +09:00
Trustin Lee
0b36aa6270
[maven-release-plugin] prepare for next development iteration
2011-08-02 10:47:19 +09:00
Trustin Lee
a96d88c251
[maven-release-plugin] prepare release netty-3.2.5.Final
2011-08-02 10:47:07 +09:00
Trustin Lee
dc33e99872
NETTY-408 ChunkedStream generates 1-byte chunks for wrapped input streams that does have sane implementation of available() method
...
* Updated JavaDoc so that users don't specify an InputStream with poor available() implementation.
2011-08-02 09:48:34 +09:00