Norman Maurer
|
5d51aed846
|
Change ChannelInboundMessageHandlerAdapter.beginMessageReceived(..) to return a boolean that will be used to check if data should be processed. See #674
|
2012-10-23 20:43:58 +02:00 |
|
Trustin Lee
|
279712a6a0
|
[#670] Intermittent IllegalStateException with ByteToMessageDecoder impl with bounded inbound buffer
* AioSocketChannel.expandReadBuffer() should not call discardReadBytes()
becuase it messes up with NIO.2
|
2012-10-22 12:42:07 -07:00 |
|
Trustin Lee
|
ae839db383
|
[#670] Intermittent IllegalStateException with ByteToMessageDecoder impl with bounded inbound buffer
* Ensure to call discardReadBytes() before giving up expanding the buffer
|
2012-10-22 11:53:25 -07:00 |
|
Norman Maurer
|
e7c6c88063
|
Fix releasing of resources in AioEventLoopGroup, as it missed to shutdown the AsynchronousChannelGroup before. See #659
|
2012-10-16 20:18:52 +02:00 |
|
Norman Maurer
|
e9d2ebea3d
|
Disable SCTP tests on platforms that not support them, also not run tests for sctp OIO. See #633
|
2012-10-13 09:19:01 +02:00 |
|
Norman Maurer
|
6143626427
|
Cleanup of sctp code based on comments in #633
|
2012-10-12 07:45:00 +02:00 |
|
Norman Maurer
|
592f1fcc60
|
Merge pull request #633 from jestan/master
SCTP Transport Codecs and TestCases
|
2012-10-11 22:38:07 -07:00 |
|
AtKaaZ
|
9b35513fa5
|
server handler wasn't working due to field being overwritten in subclass
|
2012-10-09 20:55:24 +02:00 |
|
Norman Maurer
|
da7bcfa8f6
|
Add tests for AioChannelFinder implementations
|
2012-10-01 06:46:55 +02:00 |
|
Jestan Nirojan
|
6904b62c2f
|
Resolved conflicts in SctpData/SctpMessage refactoring
|
2012-09-29 02:01:00 +08:00 |
|
Trustin Lee
|
820af50b63
|
[maven-release-plugin] prepare for next development iteration
|
2012-09-28 17:57:40 +09:00 |
|
Trustin Lee
|
595e1067c7
|
[maven-release-plugin] prepare release netty-4.0.0.Alpha5
|
2012-09-28 17:57:04 +09:00 |
|
Trustin Lee
|
bd8ee64366
|
Pull #625 from @CruzBishop selectively
|
2012-09-27 19:04:35 +09:00 |
|
Trustin Lee
|
a6bd91dce5
|
Sync the default select timeout with 3.x
|
2012-09-23 17:28:52 +09:00 |
|
Trustin Lee
|
d49d02ffe4
|
[#610] alpha4: DefaultSctpServerChannelConfig options in current java 7
Fix a wrong signature in com.sun.nio.sctp.SctpServerChannel.setOption()
|
2012-09-23 17:25:24 +09:00 |
|
Jestan Nirojan
|
b268f0b333
|
Added SCTP Codec Handlers + minor refactoring
|
2012-09-23 14:12:32 +08:00 |
|
Trustin Lee
|
cf7a55106c
|
Fix checkstyle violation
|
2012-09-22 12:09:45 +09:00 |
|
Trustin Lee
|
0b71afb81c
|
Improve the stability of ServerSocketSuspendTest
|
2012-09-22 12:05:00 +09:00 |
|
Trustin Lee
|
256f55b2e9
|
[#608] Channel MessageBridge concurrency issues
Fixed ArrayIndexOutOfBoundsException caused by a race condition that the peer's inbound buffer is accessed concurrently.
|
2012-09-22 11:22:02 +09:00 |
|
Norman Maurer
|
93b34e3856
|
Some more cleanup
|
2012-09-21 22:33:11 +02:00 |
|
Norman Maurer
|
a15213d751
|
Cleanup imports and add javadocs
|
2012-09-21 22:08:12 +02:00 |
|
Jestan Nirojan
|
bf22173ed1
|
Added Multi-Homing in SctpOioChannel
|
2012-09-21 12:16:06 +08:00 |
|
Jestan Nirojan
|
db4a3a4789
|
Merge remote-tracking branch 'upstream/master'
|
2012-09-21 11:56:47 +08:00 |
|
Jestan Nirojan
|
47eafa386c
|
Added SCTP OIO Transport
- Sctp OioChannel/ServeChannel implementation.
- Changed interrupt handling in OioEventLoop.
- SctpOioEchoClient/Server Example.
|
2012-09-21 11:56:13 +08:00 |
|
Norman Maurer
|
fd8db4eba2
|
Check if the remoteAddress is null before set it on DatagramPacket to prevent IllegalArgumentException. See #615
|
2012-09-18 21:25:29 +02:00 |
|
norman
|
3295145e88
|
[maven-release-plugin] prepare for next development iteration
|
2012-09-13 10:40:52 +02:00 |
|
norman
|
42685759de
|
[maven-release-plugin] prepare release netty-4.0.0.Alpha4
|
2012-09-13 10:40:44 +02:00 |
|
norman
|
058dfd0a78
|
Just add a comment to show that the code is related to #597
|
2012-09-13 10:25:59 +02:00 |
|
norman
|
df72356d7d
|
Rename classes as result of descussion on #594
|
2012-09-12 14:04:41 +02:00 |
|
norman
|
d22480c0f4
|
Add more javadocs and also two helper methods that make it easy to create new Clientbootstrap instances from an existing one
|
2012-09-11 10:32:59 +02:00 |
|
norman
|
281f73fe1a
|
Some javadocs love
|
2012-09-11 10:04:05 +02:00 |
|
norman
|
ec1339d775
|
Finish the refactoring of bootstrap
|
2012-09-11 09:34:51 +02:00 |
|
Norman Maurer
|
4ce85827ed
|
Start to refactor bootstraps to share more code and allow for reuse
|
2012-09-11 08:31:20 +02:00 |
|
Norman Maurer
|
1eea3cf503
|
Support unbindAddress and bindAddress for SCTP. See #560
|
2012-09-08 20:20:02 +02:00 |
|
Jestan Nirojan
|
22cbaa489a
|
Ported SCTP Transport
- Ported SCTP Echo Server/Client Example
- Added SctpMessage, SctpData and SctpNotification classes
|
2012-09-04 17:47:48 +05:30 |
|
Jestan Nirojan
|
5395944499
|
SCTP channel classes ported to Netty 4.x
|
2012-09-03 17:42:09 +05:30 |
|
Jestan Nirojan
|
359d09bd4d
|
Merge remote-tracking branch 'upstream/master'
|
2012-09-03 16:53:05 +08:00 |
|
Trustin Lee
|
5a9d6e59c1
|
Remove unnecessary annotation
|
2012-09-01 17:03:37 +09:00 |
|
Trustin Lee
|
5c347c5683
|
Remove unused import
|
2012-09-01 16:56:44 +09:00 |
|
Trustin Lee
|
e781bd0b1e
|
Disable epoll bug woakraround by default
|
2012-09-01 16:56:09 +09:00 |
|
Trustin Lee
|
00f737c3a4
|
Move system property access operations to SystemPropertyUtil
|
2012-09-01 16:52:47 +09:00 |
|
Trustin Lee
|
f2538a996d
|
[maven-release-plugin] prepare for next development iteration
|
2012-08-30 16:47:52 +09:00 |
|
Trustin Lee
|
628c5598b3
|
[maven-release-plugin] prepare release netty-4.0.0.Alpha3
|
2012-08-30 16:46:58 +09:00 |
|
Trustin Lee
|
a1e8dad4ad
|
Fix a bug in shutdownOutput() implementations where wrong ChannelFuture is notified
|
2012-08-30 16:38:08 +09:00 |
|
Trustin Lee
|
68e86d8667
|
[#576] UDP socket bind to specific IP does not receive broadcast on Linux
- Log a warning message if a user attempts to bind to a non-wildcard
address with SO_BROADCAST set on non-Windows
|
2012-08-30 15:50:55 +09:00 |
|
Trustin Lee
|
59e511fdc6
|
Better method names
|
2012-08-30 14:18:04 +09:00 |
|
Trustin Lee
|
47045e12cd
|
Fix a checkstyle violation
|
2012-08-30 14:06:56 +09:00 |
|
Trustin Lee
|
c4e7ecbb5d
|
[#575] Sending EMPTYBUFFER via NIO-UDP results in spaming the socket
|
2012-08-30 14:04:13 +09:00 |
|
Norman Maurer
|
44bfc47a52
|
Correctly convert to nanos. See #565
|
2012-08-30 07:24:22 +03:00 |
|
Trustin Lee
|
9580c417c6
|
Javadoc
|
2012-08-29 21:52:39 +09:00 |
|