1. d2929cd Reorganize packages. by Kun Zhang · 9 years ago
  2. ba103fb OkHttp: make the pending stream cancellable. by Xudong Ma · 9 years ago
  3. fc85a40 Add more documentation for transports. by Kun Zhang · 9 years ago
  4. 7d1e65c Switch ALPN/NPN to advertise only h2 by Xudong Ma · 9 years ago
  5. c55657e Make new stream call asynchronous when the MAX_CONCURRENT_STREAMS is reached. by Xudong Ma · 9 years ago
  6. d2b1b37 Add a transport ready for use with retry by Carl Mastrangelo · 9 years ago
  7. bd8987a Add a status to Transport shutdown by Carl Mastrangelo · 9 years ago
  8. abfdbf6 OkHttp: sync error map with gRpc spec. by Xudong Ma · 9 years ago
  9. dde1e80 Adjust @GuardedBy to pass internal GuardedBy Checking. by Xudong Ma · 9 years ago
  10. e36a64e Correctly handle unknown http2 error code. by Xudong Ma · 9 years ago
  11. 750f626 Simplify locking model of OkHttp Transport, avoid potential deadlock. by Xudong Ma · 9 years ago
  12. 5cc4e84 okhttp: Enable TLS by default. by Xudong Ma · 9 years ago
  13. e8086b5 Support NPN fallback for Android. by Xudong Ma · 9 years ago
  14. f9f5b6a okhttp: make transport.start() async. by Xudong Ma · 9 years ago
  15. ad7820c Remove OkHttpClientTransport.DEFAULT_INITIAL_WINDOW_SIZE, use Utils.DEFAULT_WINDOW_SIZE instead. by Xudong Ma · 9 years ago
  16. 3e26b99 Enforce request deadline by Jack Coughlin · 9 years ago
  17. 73acc73 Remove Method and switch its users to MethodDescriptor. by Kun Zhang · 9 years ago
  18. 8c1d38a Adding default User-Agent for netty and okhttp. by nmittler · 9 years ago
  19. efbb655 Simplifying flow control window config for Netty. by nmittler · 9 years ago
  20. 30455fd Remove unused variables by Eric Anderson · 9 years ago
  21. cb15779 Use class name, not instance, for invoking static method by Eric Anderson · 9 years ago
  22. 10578e3 param in JavaDoc is lower-case by Eric Anderson · 9 years ago
  23. 3777b8b Use hostname instead of InetAddress for Socket creation. by Xiao Hang · 9 years ago
  24. 45da9c5 Add a few ChannelImpl tests and improve error status by Eric Anderson · 9 years ago
  25. 6e406ac Refactor OkHttpProtocolNegotiator, move Android related operations into an inner class. by Xudong Ma · 9 years ago
  26. eb15eb2 Some cleanup for okhttp: by Xudong Ma · 9 years ago
  27. 25da649 Support setting ALPN for Android older than 5.0, OkHttp(2.3+) implementation only support such function for Android 5.0+. by Xudong Ma · 9 years ago
  28. 0d03f89 add ping by Josh Humphries · 9 years ago
  29. d242b22 Upgrade OkHttp to 2.4. by Xudong Ma · 9 years ago
  30. eed8f92 okhttp: Call onError for IOException thrown by FrameReader.nextFrame(). by Xudong Ma · 9 years ago
  31. 0782c04 Catch Exception thrown when query NPN selected protocol on a socket that haven't started hand shake. by Xudong Ma · 9 years ago
  32. 2fe279f Add SelectedProtocolQuerier to get protocol selected by NPN on Android. by Xudong Ma · 9 years ago
  33. 6affc8d upgrade okhttp to 2.3 by Xudong Ma · 9 years ago
  34. 0d48087 okhttp: outbound flow control. by Xudong Ma · 9 years ago
  35. e50f671 Change OkHttpClientTransport#start to construct a Socket with the hostname and port if the address is unresolved. by jonathanlin · 9 years ago
  36. 7c1daba okhttp: don't crash if receive window_update for an non-exit stream which may have existed. by Xudong Ma · 9 years ago
  37. 71447ce okhttp: changes for handling unknown stream id. by Xudong Ma · 9 years ago
  38. c3125be okhttp: send reset when client receives halfClose from server before sending halfClose. by Xudong Ma · 9 years ago
  39. 1787106 isReady() should return false until stream allocated by Eric Anderson · 9 years ago
  40. 7ecb6fa okhttp: Catch Exceptions thrown by the frist platform.getSelectedProtocol(sslSocket), since in some implementations, querying selected protocol before the handshake will fail with exception. by Xudong Ma · 9 years ago
  41. b2a3f7b okhttp: respect SETTINGS_INITIAL_WINDOW_SIZE in outbound flow control. by Xudong Ma · 9 years ago
  42. 8a5d927 Fix the race between failing and starting pending streams. by Xudong Ma · 9 years ago
  43. f679edc Fix memeory leak in MessageFramer caused by allocation of 'empty' buffers never being released. by Louis Ryan · 9 years ago
  44. d0aad72 okhttp: Clean up stream when error happens. by Xudong Ma · 9 years ago
  45. 4b00476 okhttp: Flushes headers out immediately, so that the server can be aware of the stream before receiving real data (or half close). by Xudong Ma · 9 years ago
  46. 2f4aa5a Use Status "UNKNOWN" instead of "INTERNAL" when Status.fromThrowable can not find a cause with a status. by Xudong Ma · 9 years ago
  47. f7010f2 Use message size as a hint to the allocator for buffer capacity. by Louis Ryan · 9 years ago
  48. fc3e416 Propagate explicit flushes through MessageFramer by Eric Anderson · 9 years ago
  49. f920bad Upgrading to the latest Netty version. by nmittler · 9 years ago
  50. 883eb62 OkHttp: Temporally support multiple h2-xx protocol on client side. by Xudong Ma · 9 years ago
  51. 775829a okhttp: Reset stream when receiving window is negative. by Xudong Ma · 9 years ago
  52. c2f0394 TLS support for okhttp transport. by Xudong Ma · 9 years ago
  53. fcf1517 Respect MAX_CONCURRENT_STREAMS in OkHttp client. by Xudong Ma · 9 years ago
  54. 9aae6f6 checkstyle change: by Xudong Ma · 9 years ago
  55. 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 · 9 years ago
  56. 9175d9d Fix data corruption issue receiving payloads > 2kB by Thomas ten Cate · 10 years ago
  57. 7865b03 okhttp: code style fix; handle exception by Eric Anderson · 10 years ago
  58. 7c6b627 Close frame reader and notify the listener in reader thread, to avoid reading after reader is closed. by Xudong Ma · 10 years ago
  59. c3e8dae Add checkstyle checking by Eric Anderson · 10 years ago
  60. 0076243 Add WritableBuffer interface for zero copy data writes. Fixes #8 by Jakob Buchgraber · 10 years ago
  61. 62fb1d2 Bug fix. frameWriter and frameReader are not initialized when an Exception is thrown in socket creation. by Xiao Hang · 10 years ago
  62. 95c6f50 Udate TODOs to use Github user names by Louis Ryan · 10 years ago
  63. f2f1209 Fix race for stream id in OkHttpClientTransport. by Jakob Buchgraber · 10 years ago
  64. 74f231a Remove Guava Service from ClientTransport by Eric Anderson · 10 years ago
  65. 8aa79b3 Improve thread safety of newStream() by Eric Anderson · 10 years ago
  66. f831458 Removing all references to "stubby" by nmittler · 10 years ago
  67. 0ca6584 Move to a non-snapshot version of OkHttp by Manik Surtani · 10 years ago
  68. 0077e67 Remove unused imports by Eric Anderson · 10 years ago
  69. 02cc521 Fixing @GuardedBy annotation to use the correct lock name. by nmittler · 10 years ago
  70. de3a131 Changing gRPC Java inbound flow control model by nmittler · 10 years ago
  71. 4de2026 Fix TODO attribution by ejona · 10 years ago
  72. 7235a39 Remove Service API from ChannelImpl by ejona · 10 years ago
  73. 828f941 Remove dependency on guava Lists for initializing list. by simonma · 10 years ago
  74. 11c363a Disallowing message delivery after status has been delivered to the listener. by nathanmittler · 10 years ago
  75. c0f4192 Remove gRPC v1 support. by ejona · 10 years ago
  76. 4523059 Upgrade OkHttp for Android SNI / NPN fix by ejona · 10 years ago
  77. 56e307f Add BSD license header to all source files by lryan · 10 years ago
  78. 9dd0c94 Add SslSocketFactory support to OkHttpTransportFactory. by rocking · 10 years ago
  79. 2b116ef Encode binary headers with Base64 on the wire, and requires all binary headers by zhangkun · 10 years ago
  80. 751a4df Remove JDK1.7 method InetSocketAddress#getHostString since JDK1.7 is only supported by Android after 4.4 KitKat. by simonma · 10 years ago
  81. 8375cd0 GRPC Java clients will send the "te: trailers" header, and the server will by zhangkun · 10 years ago
  82. c5e70c2 Remove StreamState and use inboundPhase/outboundPhase instead by lryan · 10 years ago
  83. 0d8477c Adding crude outbound flow control to OkHttp transport. by nathanmittler · 10 years ago
  84. 5d953e8 Updating gRPC code to use the latest Netty with application-level flow control support. by nathanmittler · 10 years ago
  85. 669724a Rationalize the XXXStream classes to reduce code smear and make Netty/OkHTTP behave more consistently. by lryan · 10 years ago
  86. a71d887 Make all transport factories package-private in favor of channel builders. by zhangkun · 10 years ago
  87. 9a5a8de [1/3] Move AbstractTransportTest to third_party. by ejona · 10 years ago
  88. 29cbef1 Renaming gRPC-java "newtransport" package to just "transport". by nathanmittler · 10 years ago