Commit Graph

3113 Commits

Author SHA1 Message Date
norman
5706d6a2ec Mark not used queue impls as @deprecated as these are not needed anymore. See #477 2012-07-30 11:10:00 +02:00
Norman Maurer
26b513236f Replace usage of QueueFactory with ConcurrentLinkedQueue and LinkedBlockingQueue. See #477 2012-07-28 21:35:48 +02:00
norman
5189bb1f3f Don't close the Selector if no keys are registered. See #471 2012-07-24 15:22:19 +02:00
norman
2c318d397b [maven-release-plugin] prepare for next development iteration 2012-07-23 12:12:30 +02:00
norman
fd363ce969 [maven-release-plugin] prepare release netty-3.5.3.Final 2012-07-23 12:12:16 +02:00
norman
96182f97e8 Fix race-condition which could lead to a NPE or Exception while register a Channel with a Worker. See #469 2012-07-23 11:21:32 +02:00
norman
36acda0be9 Remove System.err.pritnln(..) statements. See #468 2012-07-23 10:19:35 +02:00
Norman Maurer
a76e8a8e36 Merge pull request #468 from fredericBregier/3
Fix issue when SSL is used on top of the Multipart. See #468
2012-07-23 01:18:22 -07:00
Frédéric Brégier
458f983d9d Fix to standard support with no more forceChunk 2012-07-23 11:11:45 +03:00
Frédéric Brégier
666bf1ffe4 Revert SSL issue on Multipart to force Chunk mode if isMultipart is true 2012-07-23 11:07:26 +03:00
norman
055434dbe1 Merge branch '3' of ssh://github.com/netty/netty into 3 2012-07-23 09:25:47 +02:00
norman
54ad935ec5 Fix race-condition which could lead to a NPE or Exception while register a Channel with a Worker. See #469 2012-07-23 09:25:26 +02:00
Trustin Lee
cb2b2830b2 Fix an infinite loop in CompositeChannelBuffer.setBytes()
.. which occurs when a channel is closed during I/O
2012-07-23 15:33:14 +09:00
norman
c059d13108 Fix race-condition which could lead to a NPE while register a Channel with a Worker. See #469 2012-07-23 07:48:03 +02:00
Frédéric Brégier
258f5b00fa Fix for SSL 2012-07-22 19:38:54 +03:00
Frédéric Brégier
b60a9f6532 Fix for SSL example 2012-07-22 19:36:36 +03:00
Frédéric Brégier
2d6dbd5a92 Fix for SSL example 2012-07-22 19:35:18 +03:00
Frédéric Brégier
a78318149e Fix for ssl example 2012-07-22 19:33:58 +03:00
Frédéric Brégier
c370fab6fb Fix issue when SSL is used on top of the Multipat, specially when using Post of a file, since it can change the overall size and therefore giving a real chunk message while it was supposed to not be chunked.
Proposal is to allow the user to force chunk mode.
2012-07-22 16:16:22 +03:00
Norman Maurer
7f0f687965 Merge pull request #467 from fredericBregier/3
Fix decodeAttribute in HttpPostRequestDecoder to take into account exception from bad format from URLDecoder.decode
2012-07-22 04:40:14 -07:00
Frédéric Brégier
0b2c43f04e Fix decodeAttribute in HttpPostRequestDecoder to take into account exception from bad format from URLDecoder.decode 2012-07-22 10:59:26 +03:00
Trustin Lee
4e5041d355 Fix typo in test samples 2012-07-19 20:41:35 +09:00
norman
2b7185f10f Remove unused buggy code 2012-07-18 09:17:15 +02:00
norman
37375708c1 Revert "Use reflection to instance java.util.concurrent.LinkedTransferQueue to make Android not fail. See #458"
This reverts commit 7a87a18c9b.
2012-07-18 09:11:53 +02:00
Norman Maurer
7a87a18c9b Use reflection to instance java.util.concurrent.LinkedTransferQueue to make Android not fail. See #458 2012-07-17 21:09:21 +02:00
Trustin Lee
4935f1b5c7 [#452] Fix a build error introduced by ObjectStreamClass.lookupAny() 2012-07-14 13:28:19 +09:00
norman
6c181af6b9 Make sure CompactObjectInputStream fall back to old behavior so make it compatible with older versions of netty which are used on the other end. See #452 2012-07-13 07:19:46 +02:00
Trustin Lee
629cf073e1 [#453] IndexOutOfBoundsException in HttpPostBodyUtil 2012-07-13 13:07:55 +09:00
Trustin Lee
2f3e0fddf2 [#452] Make ObjectDecoder work with JDK 5 again 2012-07-13 13:04:01 +09:00
Trustin Lee
1843094461 [#452] CompactObjectInputStream fails to resolve interfaces 2012-07-13 13:01:29 +09:00
Norman Maurer
d579a5a38f Fix a bug which lead to a NPE when deserialize interfaces. See #452 2012-07-12 21:14:00 +02:00
norman
c7e276efe0 Check for null values 2012-07-12 07:51:15 +02:00
norman
bd1bc534d8 Add helper method that allows to create a ChannelBuffer out of a hex dump String. See #449 2012-07-11 09:41:31 +02:00
Trustin Lee
ab43b9aa11 Add more constructors to NotSslRecordException 2012-07-11 00:43:42 +09:00
Norman Maurer
fbc9167c50 Merge pull request #448 from jpinner/spdy_frame_encoder_race
Fix for issue #442: SpdyFrameEncoder compressor state race condition
2012-07-10 02:33:35 -07:00
Jeff Pinner
fa4ea1894a Fix for issue #442: SpdyFrameEncoder compressor state race condition 2012-07-10 01:44:17 -07:00
Norman Maurer
7180146084 Merge pull request #446 from jpinner/http_compression_error
Fix for issue #444: Http compression error
2012-07-09 22:54:07 -07:00
Jeff Pinner
4493e9683f Fix for issue #444: Http compression error 2012-07-09 11:00:46 -07:00
Norman Maurer
f648aae747 Fix ArrayIndexOutOfBoundsException in ReplayDecoderBuffer which could happen when calling getByte(..) or getUnsignedByte(..). See #445 2012-07-08 11:24:26 +02:00
norman
02c0c5b5e9 Revert "Only parse the packet length one time per packet. See #382" as this makes no sense after thinking more about it and just makes it harder to read
This reverts commit 784722eff4.

Conflicts:

	src/main/java/org/jboss/netty/handler/ssl/SslHandler.java
2012-07-06 13:57:55 +02:00
norman
6421bd3885 Fix a race which could lead to have channelDisconnected event not fired. See #440 2012-07-06 07:39:41 +02:00
norman
991ca860ea [maven-release-plugin] prepare for next development iteration 2012-07-05 10:51:21 +02:00
norman
6e80df52f7 [maven-release-plugin] prepare release netty-3.5.2.Final 2012-07-05 10:51:11 +02:00
norman
9ba1878b73 Fix javadoc warnings 2012-07-05 10:47:09 +02:00
norman
b089f0c59b Fix javadoc warnings 2012-07-05 10:42:26 +02:00
norman
e0f139c5d7 Optimize SslHandler's detection of supressable exceptions, so it will not break on different OS's or jdk impls. See #79 2012-07-05 09:32:34 +02:00
norman
3385f85f5c Remove unused import 2012-07-04 14:28:08 +02:00
norman
243f1bb7ee Add testcsae for #433. Thanks 2012-07-04 14:21:39 +02:00
norman
d464e86733 Fix a bug where HttpChunk.isLast() return true if the connection was closed and nothing was left in the internal buffer but the received content was not complete. See#433 2012-07-04 09:44:01 +02:00
norman
9a1344c3ae Throw a special SSLException if a non SSL/TLS record was detected. See #437 2012-07-04 08:26:18 +02:00