1. fd7ba56 netty: Use the bootstrap ClassLoader for ALPN/NPN by Eric Anderson · 10 years ago
  2. 44f9904 Replace 'internal' import with correct one. by Jakob Buchgraber · 10 years ago
  3. 63db068 Add simple HelloWord example handling custom header by zhaohaifeng · 10 years ago
  4. f3ccdd9 Fixes Travis breakage by Xudong Ma · 10 years ago
  5. c2f0394 TLS support for okhttp transport. by Xudong Ma · 10 years ago
  6. 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
  7. ce860f9 fix compile error introduced by previous commit by Jakob Buchgraber · 10 years ago
  8. 105964b Fix memory leak by adding the Http2StreamRemovalPolicy to the channel pipeline. by Jakob Buchgraber · 10 years ago
  9. fcf1517 Respect MAX_CONCURRENT_STREAMS in OkHttp client. by Xudong Ma · 10 years ago
  10. 9aae6f6 checkstyle change: by Xudong Ma · 10 years ago
  11. 45682db Hold lock while reading isThreadScheduled by Eric Anderson · 10 years ago
  12. d70d91b Improve JavaDoc for Status by Eric Anderson · 10 years ago
  13. 74c9b5e Fix JavaDoc references to non-imported class by Eric Anderson · 10 years ago
  14. 2cad9e6 Add "unsed import" check. by Xudong Ma · 10 years ago
  15. c813ec5 Change the package option of example protos to be same as grpc-common by Xudong Ma · 10 years ago
  16. eb2d65b Disable Nagle's algorithm, this was exposed by our internal micro benchmark, the streamingInputCall() method happened to have the write-write-read pattern which added 40ms extra delay. by Xudong Ma · 10 years ago
  17. a375ecc Use codegen for integration testing by Eric Anderson · 10 years ago
  18. 1605578 Cache Gradle and not really Maven by Eric Anderson · 10 years ago
  19. 11d0094 Upgrading to the latest Netty 4.1 branch. by nmittler · 10 years ago
  20. 9bd31da Wait for handler registration by Eric Anderson · 10 years ago
  21. 966e120 Add precondition to throw more informative exception when calling request() before start() has been called. by zhangkun83 · 10 years ago
  22. 191dcd3 Test whether inbound flow control functions by Eric Anderson · 10 years ago
  23. b48b4db Fix synchronization in client auth by Eric Anderson · 10 years ago
  24. e515c77 netty: Status should be based on GOAWAY code by Eric Anderson · 10 years ago
  25. 6407c18 Default client connection window to 1MiB. by nmittler · 10 years ago
  26. ab9f827 Making connection and stream windows configurable for Netty. by nmittler · 10 years ago
  27. a3b353c Disable Travis parallel building to reduce memory usage by Eric Anderson · 10 years ago
  28. 2cbbd47 Split large payload into separate test with higher timeout by Eric Anderson · 10 years ago
  29. d8fb6f0 Use TLS for Netty integration tests by Eric Anderson · 10 years ago
  30. bcb3e8c Remove readlink -f in run-test*.sh scripts by Eric Anderson · 10 years ago
  31. b1201e7 Enable parallel Gradle builds for Travis by Eric Anderson · 10 years ago
  32. 26141b4 Allow checkstyle failures fatal, and fix last issues by Eric Anderson · 10 years ago
  33. 9175d9d Fix data corruption issue receiving payloads > 2kB by Thomas ten Cate · 10 years ago
  34. 7865b03 okhttp: code style fix; handle exception by Eric Anderson · 10 years ago
  35. 79ef04b Fix a race condition in the test, we may nitify MockFrameReader to return before it satrts waiting. by Xudong Ma · 10 years ago
  36. 2f3c173 Protobuf java/nano are now on Maven Central by Eric Anderson · 10 years ago
  37. a0acb9b Working Travis build, with caching of deps by Eric Anderson · 10 years ago
  38. c42c8c4 Basic travis configuration by Louis Ryan · 10 years ago
  39. a6edc29 Improve Status exception message by Eric Anderson · 10 years ago
  40. 78cde0d Move Status.toString next to other methods by Eric Anderson · 10 years ago
  41. 3db9297 Add missing @RunWith. by Xudong Ma · 10 years ago
  42. f38c2a0 Add missing copyright headers by Eric Anderson · 10 years ago
  43. 69cef51 Improve CONTRIBUTING.md by Eric Anderson · 10 years ago
  44. 7c6b627 Close frame reader and notify the listener in reader thread, to avoid reading after reader is closed. by Xudong Ma · 10 years ago
  45. 23972a2 Adding outbound flow control API for the transport API by nmittler · 10 years ago
  46. 9f56145 Adding outbound flow control API for Call/ServerCall by nmittler · 10 years ago
  47. 040007e Add package statement to HttpUtilTest by Eric Anderson · 10 years ago
  48. c3e8dae Add checkstyle checking by Eric Anderson · 10 years ago
  49. c5bcbc6 Handle spaces in shell script by Eric Anderson · 10 years ago
  50. 54c31b0 Fix compile error introduced by previous commit by Jakob Buchgraber · 10 years ago
  51. 3f7325e Allow switching between Netty 4 & 5 by restricting to intersection of interfaces by Louis Ryan · 10 years ago
  52. 0076243 Add WritableBuffer interface for zero copy data writes. Fixes #8 by Jakob Buchgraber · 10 years ago
  53. ee19f06 Add new readme for Auth related issues by Louis Ryan · 10 years ago
  54. 76d0955 Clean up warnings by Eric Anderson · 10 years ago
  55. 7e8a02c Add name and developers to pom by Eric Anderson · 10 years ago
  56. 767a12c Switch to use new leaner auth library for OAuth interceptor by Louis Ryan · 10 years ago
  57. 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
  58. 89cb2d1 Updating to latest Netty for frame logger optimizations. by nmittler · 10 years ago
  59. a623445 Fix IntelliJ project generation by including generated protobuf srcs by Louis Ryan · 10 years ago
  60. acfe3de Stall MessageDeframer pro-actively by Eric Anderson · 10 years ago
  61. 14444a9 Force JavaDoc to intepret code as UTF-8 by Eric Anderson · 10 years ago
  62. d4d66a5 Better error description onGoAwayRead by nmittler · 10 years ago
  63. 238a4cb Add two extra cases to make edge case testing more obvious. by Eric Anderson · 10 years ago
  64. 8986fc3 Reorganize tests. Tweak Javadoc formatting by Eric Anderson · 10 years ago
  65. 0e904f0 Tweak Http2Error and add tests by Eric Anderson · 10 years ago
  66. f822416 Use DEFAULT_WORKER_EVENT_LOOP_GROUP for both client and server. Fixes #82 by Jakob Buchgraber · 10 years ago
  67. c56cec7 Update README.md to Netty 4.1 by Jakob Buchgraber · 10 years ago
  68. 2a42509 Migrating to Netty 4.1 by nmittler · 10 years ago
  69. 54be11e Updating to the latest Netty version. by nmittler · 10 years ago
  70. a979197 Merge pull request #178 from nmittler/okhttp by Nathan Mittler · 10 years ago
  71. ad5ae25 Fixes javadoc errors by Jorge Canizales · 10 years ago
  72. fad21aa Test receiving invalid stream IDs in okhttp by nmittler · 10 years ago
  73. f1b6f62 Merge pull request #166 from nmittler/doclint by Nathan Mittler · 10 years ago
  74. dfcfb7b Tightening up error message for GO_AWAY. by nmittler · 10 years ago
  75. 2c07e23 Merge pull request #177 from nmittler/irce by Nathan Mittler · 10 years ago
  76. 4deff02 Proper buffer closure when receiving DATA with EOS by nmittler · 10 years ago
  77. 456216b Add some details for building on Windows. by Eric Anderson · 10 years ago
  78. 967c27d Merge pull request #165 from nmittler/doclint by Nathan Mittler · 10 years ago
  79. 732cfc0 Disable Javadoc doclint on Java 8 by nmittler · 10 years ago
  80. bdb3f4e Merge pull request #161 from adewale/patch-1 by Nathan Mittler · 10 years ago
  81. 9b5575d Correct small grammar error in comment. by Ade Oshineye · 10 years ago
  82. 192144e Add Sonatype OSSRH upload support, with nice POMs by Eric Anderson · 10 years ago
  83. b938ba5 Support building on Windows by Eric Anderson · 10 years ago
  84. 4a2c0a5 Have SendGrpcFrameCommand constructor take an AbstractStream object instead of a stream id. by Jakob Buchgraber · 10 years ago
  85. ef87818 Polish javadoc for transport/ by zhangkun83 · 10 years ago
  86. abd4eec Implement cancellation for the Future interface. by zhangkun83 · 10 years ago
  87. b780bf0 Merge pull request #151 from nmittler/examples_style by Nathan Mittler · 10 years ago
  88. 2c7c32d More example changes to match style guide. by nmittler · 10 years ago
  89. bb71e21 Merge pull request #149 from nmittler/examples_style by Nathan Mittler · 10 years ago
  90. 81cc0da Updating examples to be consistent with proto3 styleguide. by nmittler · 10 years ago
  91. 4afd984 Merge pull request #147 from grpc/jayantkolhe-patch-1 by louiscryan · 10 years ago
  92. b700ade Create PATENTS by Jayant Kolhe · 10 years ago
  93. 6f0b21e Update compiler/README.md with nano codegen commandline by Xiao Hang · 10 years ago
  94. 62fb1d2 Bug fix. frameWriter and frameReader are not initialized when an Exception is thrown in socket creation. by Xiao Hang · 10 years ago
  95. 6c6789c Adding SimpleContext back into messages.proto. by nmittler · 10 years ago
  96. b784eb6 Merge pull request #138 from ejona86/proto-release by Nathan Mittler · 10 years ago
  97. a6f5fff Depend on proto 3.0.0-alpha-2 instead of snapshot by Eric Anderson · 10 years ago
  98. 98e5a38 Merge pull request #137 from nmittler/test_protos by Nathan Mittler · 10 years ago
  99. 0e7685b Updating integ test protos to be consistent with C by nmittler · 10 years ago
  100. fc55f8b Merge pull request #136 from grpc/jayantkolhe-patch-1 by Nathan Mittler · 10 years ago