1. 73acc73 Remove Method and switch its users to MethodDescriptor. by Kun Zhang · 9 years ago
  2. a6c51e7 Fixing some compiler warnings. by nmittler · 9 years ago
  3. 8c1d38a Adding default User-Agent for netty and okhttp. by nmittler · 9 years ago
  4. efbb655 Simplifying flow control window config for Netty. by nmittler · 9 years ago
  5. d3c5b00 Add CallOptions. by Kun Zhang · 9 years ago
  6. c740312 Revert swapping to the "canonical HTTP mapping" by Eric Anderson · 9 years ago
  7. ae2b5bf Exposing AbstractBufferingHandler so it can be used by custom protocol negotiators. by nmittler · 9 years ago
  8. 77878a0 Pass timeout header in ChannelImpl by Jack Coughlin · 9 years ago
  9. 4322a43 Throw error for Netty when Jetty ALPN not configured. by nmittler · 9 years ago
  10. 9a6ded5 Cleanup of NettyClientTransportTest. by nmittler · 9 years ago
  11. 424c7e6 Avoid GCM in unit tests by Eric Anderson · 9 years ago
  12. cb486e4 Testing that buffered streams clean up properly upon disconnect. by nmittler · 9 years ago
  13. 491aad2 Changing Netty handlers to properly set initialSettings. by nmittler · 9 years ago
  14. 0d03f89 add ping by Josh Humphries · 9 years ago
  15. 4ee2a65 Allowing Netty TLS bootstrap handler to be sharable. by nmittler · 9 years ago
  16. ffcc5f2 Remove unused imports. by Xudong Ma · 9 years ago
  17. 59f6f45 Switching to Netty's ALPN support. by nmittler · 9 years ago
  18. 641fc28 Add support for indeterminate length messages. This will make using GRPC easier for non-proto payload types. by Louis Ryan · 9 years ago
  19. 6affc8d upgrade okhttp to 2.3 by Xudong Ma · 9 years ago
  20. 65769c2 Making client-side negotiation more pluggable. by nmittler · 9 years ago
  21. 98c6355 Disable Netty eventloop graceful termination by Eric Anderson · 9 years ago
  22. d549117 Implement writes to the channel using a dedicated write queue which allows for efficient flush by Louis Ryan · 9 years ago
  23. 8f537e3 updates to test native epoll by nmittler · 9 years ago
  24. 5efbb6f Allow 100 streams initially rather than 10. by nmittler · 9 years ago
  25. 1787106 isReady() should return false until stream allocated by Eric Anderson · 9 years ago
  26. c3fa600 Fixing compiler warning. by nmittler · 9 years ago
  27. d5727c7 Deferring stream creation until receiving SETTINGS from server. by nmittler · 9 years ago
  28. b6407c4 Only complete graceful shutdown after buffered streams complete. by nmittler · 9 years ago
  29. b544383 Fixing build issue. by nmittler · 9 years ago
  30. d8d8ebd Adding logging to NettyClientHandler. by nmittler · 9 years ago
  31. 64df428 Properly removing buffered streams after receiving goAway by nmittler · 9 years ago
  32. 7f73189 Always checking MAX_CONCURRENT_STREAMS in BufferingHttp2ConnectionEncoder. by nmittler · 9 years ago
  33. a45e0a4 Cleaning up closing for Netty client/server. by nmittler · 9 years ago
  34. ef6a2f0 Updating to the latest Netty version. by nmittler · 9 years ago
  35. 10fb206 Produce combined JavaDoc, add links, exclude internals by Eric Anderson · 9 years ago
  36. c8c478e netty: Remove goAwayStatus when client closing by Eric Anderson · 9 years ago
  37. 68cba97 Do not fail pending streams when sending GOAWAY. by nmittler · 9 years ago
  38. 64176d5 Adding outbound flow control for Netty. by nmittler · 9 years ago
  39. 1af367c Remove all blocking from the NettyClientTransport. Fixes #116 by Jakob Buchgraber · 9 years ago
  40. b6eb9d7 Don't close streams when sending GOAWAY by Eric Anderson · 9 years ago
  41. f2cba89 Update Netty to 9d70cf3 to pick up https://github.com/netty/netty/commit/8271c8a which eliminates by Louis Ryan · 9 years ago
  42. e05885d Swap to Netty's SslContextBuilder by Eric Anderson · 10 years ago
  43. 7779b4f Cleaning up some warnings. by nmittler · 9 years ago
  44. d8d7908 Avoid flushing CreateStreamCommand for calls where the client is known to send a payload immediately afterward. by Louis Ryan · 9 years ago
  45. 29c43c1 Upgrading to the latest Netty version. by nmittler · 9 years ago
  46. f679edc Fix memeory leak in MessageFramer caused by allocation of 'empty' buffers never being released. by Louis Ryan · 9 years ago
  47. 3a4f4b5 Add support for setting the connection and stream flow control window to NettyServerBuilder. by Jakob Buchgraber · 9 years ago
  48. 2f4aa5a Use Status "UNKNOWN" instead of "INTERNAL" when Status.fromThrowable can not find a cause with a status. by Xudong Ma · 9 years ago
  49. f7010f2 Use message size as a hint to the allocator for buffer capacity. by Louis Ryan · 9 years ago
  50. 3ecbd04 Upgrading to latest Netty version. by nmittler · 9 years ago
  51. fc3e416 Propagate explicit flushes through MessageFramer by Eric Anderson · 9 years ago
  52. 23aac9e Fix netty closure check by Eric Anderson · 9 years ago
  53. 4f4f8e4 Remove Guava's Service from server transport by Eric Anderson · 9 years ago
  54. f920bad Upgrading to the latest Netty version. by nmittler · 9 years ago
  55. 883eb62 OkHttp: Temporally support multiple h2-xx protocol on client side. by Xudong Ma · 9 years ago
  56. 5b2e336 netty: Add option to set MAX_CONCURRENT_STREAMS by Eric Anderson · 10 years ago
  57. 1e257c4 Remove unused local variable by Eric Anderson · 9 years ago
  58. e8afa3c Fix bug where the stream id would not get incremented for buffered streams. by Jakob Buchgraber · 9 years ago
  59. 9d21463 Temporally support Http protocol name "h2-16" for OkHttp client. by Xudong Ma · 9 years ago
  60. fd7ba56 netty: Use the bootstrap ClassLoader for ALPN/NPN by Eric Anderson · 9 years ago
  61. 44f9904 Replace 'internal' import with correct one. by Jakob Buchgraber · 9 years ago
  62. f3ccdd9 Fixes Travis breakage by Xudong Ma · 9 years ago
  63. 5f70a12 Remove blocking on client stream creation and buffer RPC Calls for when the MAX_CONCURRENT_STREAMS limit is hit. Fixes #118 by Jakob Buchgraber · 10 years ago
  64. ce860f9 fix compile error introduced by previous commit by Jakob Buchgraber · 9 years ago
  65. 105964b Fix memory leak by adding the Http2StreamRemovalPolicy to the channel pipeline. by Jakob Buchgraber · 9 years ago
  66. 9aae6f6 checkstyle change: by Xudong Ma · 9 years ago
  67. 74c9b5e Fix JavaDoc references to non-imported class by Eric Anderson · 9 years ago
  68. 2cad9e6 Add "unsed import" check. by Xudong Ma · 9 years ago
  69. 11d0094 Upgrading to the latest Netty 4.1 branch. by nmittler · 9 years ago
  70. 9bd31da Wait for handler registration by Eric Anderson · 9 years ago
  71. e515c77 netty: Status should be based on GOAWAY code by Eric Anderson · 9 years ago
  72. 6407c18 Default client connection window to 1MiB. by nmittler · 9 years ago
  73. ab9f827 Making connection and stream windows configurable for Netty. by nmittler · 9 years ago
  74. c3e8dae Add checkstyle checking by Eric Anderson · 10 years ago
  75. 54c31b0 Fix compile error introduced by previous commit by Jakob Buchgraber · 10 years ago
  76. 3f7325e Allow switching between Netty 4 & 5 by restricting to intersection of interfaces by Louis Ryan · 10 years ago
  77. 0076243 Add WritableBuffer interface for zero copy data writes. Fixes #8 by Jakob Buchgraber · 10 years ago
  78. 1216de6 Add support to Netty builders for other channel types. Demonstrate and test use of this with local channels by Louis Ryan · 10 years ago
  79. d4d66a5 Better error description onGoAwayRead by nmittler · 10 years ago
  80. f822416 Use DEFAULT_WORKER_EVENT_LOOP_GROUP for both client and server. Fixes #82 by Jakob Buchgraber · 10 years ago
  81. 2a42509 Migrating to Netty 4.1 by nmittler · 10 years ago
  82. 54be11e Updating to the latest Netty version. by nmittler · 10 years ago
  83. f1b6f62 Merge pull request #166 from nmittler/doclint by Nathan Mittler · 10 years ago
  84. dfcfb7b Tightening up error message for GO_AWAY. by nmittler · 10 years ago
  85. 4deff02 Proper buffer closure when receiving DATA with EOS by nmittler · 10 years ago
  86. 4a2c0a5 Have SendGrpcFrameCommand constructor take an AbstractStream object instead of a stream id. by Jakob Buchgraber · 10 years ago
  87. 1961402 Revert "Have SendGrpcFrameCommand constructor take an AbstractStream object instead of a stream id." by Jakob Buchgraber · 10 years ago
  88. 7ef1781 Cleanup and Nitpicking by Jakob Buchgraber · 10 years ago
  89. 0d78268 Have SendGrpcFrameCommand constructor take an AbstractStream object instead of a stream id. by Jakob Buchgraber · 10 years ago
  90. 488f8a9 Merge pull request #117 from nmittler/stream_removal_fix by Nathan Mittler · 10 years ago
  91. 23f513c Some comment cleanup in the Netty builders. by nmittler · 10 years ago
  92. cc17041 Fixing memory leak in stream removal policy by nmittler · 10 years ago
  93. 425e3c0 Remove dead GrpcFramingUtil class by Louis Ryan · 10 years ago
  94. 95c6f50 Udate TODOs to use Github user names by Louis Ryan · 10 years ago
  95. c6c0a3b Remove user prefix from NettyServerBuilder.userBossEventLoopGroup(). Fixes #73 by Jakob Buchgraber · 10 years ago
  96. 07d0917 Add ServerImpl#awaitTerminated() method. Fixes #80 by Jakob Buchgraber · 10 years ago
  97. 74f231a Remove Guava Service from ClientTransport by Eric Anderson · 10 years ago
  98. 127270b Fix shutdown race with negotiation by Eric Anderson · 10 years ago
  99. 8aa79b3 Improve thread safety of newStream() by Eric Anderson · 10 years ago
  100. c84ef83 Simplify connection callback handling in Netty by Eric Anderson · 10 years ago