1. 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
  2. 0d03f89 add ping by Josh Humphries · 9 years ago
  3. d242b22 Upgrade OkHttp to 2.4. by Xudong Ma · 9 years ago
  4. eed8f92 okhttp: Call onError for IOException thrown by FrameReader.nextFrame(). by Xudong Ma · 9 years ago
  5. 0782c04 Catch Exception thrown when query NPN selected protocol on a socket that haven't started hand shake. by Xudong Ma · 9 years ago
  6. 2fe279f Add SelectedProtocolQuerier to get protocol selected by NPN on Android. by Xudong Ma · 9 years ago
  7. 641fc28 Add support for indeterminate length messages. This will make using GRPC easier for non-proto payload types. by Louis Ryan · 9 years ago
  8. 6affc8d upgrade okhttp to 2.3 by Xudong Ma · 9 years ago
  9. 0d48087 okhttp: outbound flow control. by Xudong Ma · 9 years ago
  10. e50f671 Change OkHttpClientTransport#start to construct a Socket with the hostname and port if the address is unresolved. by jonathanlin · 9 years ago
  11. 7c1daba okhttp: don't crash if receive window_update for an non-exit stream which may have existed. by Xudong Ma · 9 years ago
  12. 71447ce okhttp: changes for handling unknown stream id. by Xudong Ma · 9 years ago
  13. c3125be okhttp: send reset when client receives halfClose from server before sending halfClose. by Xudong Ma · 9 years ago
  14. 1787106 isReady() should return false until stream allocated by Eric Anderson · 9 years ago
  15. 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
  16. 10fb206 Produce combined JavaDoc, add links, exclude internals by Eric Anderson · 9 years ago
  17. 35cb22d Add comment to satisfy checkstyle by Eric Anderson · 9 years ago
  18. 64176d5 Adding outbound flow control for Netty. by nmittler · 9 years ago
  19. 7779b4f Cleaning up some warnings. by nmittler · 9 years ago
  20. 69c6704 De-flake OkHttpClientTransportTest.pendingStreamFailedByIdExhausted. by Xudong Ma · 9 years ago
  21. 9ffc711 Fix style violations introduced in b2a3f7 by Eric Anderson · 9 years ago
  22. b2a3f7b okhttp: respect SETTINGS_INITIAL_WINDOW_SIZE in outbound flow control. by Xudong Ma · 9 years ago
  23. 8a5d927 Fix the race between failing and starting pending streams. by Xudong Ma · 9 years ago
  24. f679edc Fix memeory leak in MessageFramer caused by allocation of 'empty' buffers never being released. by Louis Ryan · 9 years ago
  25. d0aad72 okhttp: Clean up stream when error happens. by Xudong Ma · 9 years ago
  26. 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
  27. 2f4aa5a Use Status "UNKNOWN" instead of "INTERNAL" when Status.fromThrowable can not find a cause with a status. by Xudong Ma · 9 years ago
  28. f7010f2 Use message size as a hint to the allocator for buffer capacity. by Louis Ryan · 9 years ago
  29. fc3e416 Propagate explicit flushes through MessageFramer by Eric Anderson · 9 years ago
  30. f920bad Upgrading to the latest Netty version. by nmittler · 9 years ago
  31. 883eb62 OkHttp: Temporally support multiple h2-xx protocol on client side. by Xudong Ma · 9 years ago
  32. 775829a okhttp: Reset stream when receiving window is negative. by Xudong Ma · 9 years ago
  33. c2f0394 TLS support for okhttp transport. by Xudong Ma · 9 years ago
  34. fcf1517 Respect MAX_CONCURRENT_STREAMS in OkHttp client. by Xudong Ma · 9 years ago
  35. 9aae6f6 checkstyle change: by Xudong Ma · 9 years ago
  36. 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
  37. 9175d9d Fix data corruption issue receiving payloads > 2kB by Thomas ten Cate · 9 years ago
  38. 7865b03 okhttp: code style fix; handle exception by Eric Anderson · 9 years ago
  39. 79ef04b Fix a race condition in the test, we may nitify MockFrameReader to return before it satrts waiting. by Xudong Ma · 9 years ago
  40. 7c6b627 Close frame reader and notify the listener in reader thread, to avoid reading after reader is closed. by Xudong Ma · 9 years ago
  41. 23972a2 Adding outbound flow control API for the transport API by nmittler · 9 years ago
  42. c3e8dae Add checkstyle checking by Eric Anderson · 9 years ago
  43. 0076243 Add WritableBuffer interface for zero copy data writes. Fixes #8 by Jakob Buchgraber · 9 years ago
  44. fad21aa Test receiving invalid stream IDs in okhttp by nmittler · 9 years ago
  45. 62fb1d2 Bug fix. frameWriter and frameReader are not initialized when an Exception is thrown in socket creation. by Xiao Hang · 9 years ago
  46. 95c6f50 Udate TODOs to use Github user names by Louis Ryan · 9 years ago
  47. f2f1209 Fix race for stream id in OkHttpClientTransport. by Jakob Buchgraber · 9 years ago
  48. 303482a Fix race in OkHttp test by Eric Anderson · 9 years ago
  49. 74f231a Remove Guava Service from ClientTransport by Eric Anderson · 9 years ago
  50. 8aa79b3 Improve thread safety of newStream() by Eric Anderson · 9 years ago
  51. 89b8d7f Moving decompression to the channel thread. by nmittler · 9 years ago
  52. 6a93de9 Remove explicit Okio dependency. by Jake Wharton · 9 years ago
  53. f831458 Removing all references to "stubby" by nmittler · 9 years ago
  54. 1905249 Removing Maven build by nmittler · 9 years ago
  55. 0ca6584 Move to a non-snapshot version of OkHttp by Manik Surtani · 9 years ago
  56. 02c953e Migrating run scripts to gradle. by nmittler · 9 years ago
  57. 0077e67 Remove unused imports by Eric Anderson · 9 years ago
  58. 02cc521 Fixing @GuardedBy annotation to use the correct lock name. by nmittler · 9 years ago
  59. de3a131 Changing gRPC Java inbound flow control model by nmittler · 9 years ago
  60. 4de2026 Fix TODO attribution by ejona · 9 years ago
  61. 3df1c33 Reimplement test "readStatus" since v2 is here. by simonma · 9 years ago
  62. 7235a39 Remove Service API from ChannelImpl by ejona · 10 years ago
  63. 828f941 Remove dependency on guava Lists for initializing list. by simonma · 10 years ago
  64. 11c363a Disallowing message delivery after status has been delivered to the listener. by nathanmittler · 10 years ago
  65. c0f4192 Remove gRPC v1 support. by ejona · 10 years ago
  66. 164b734 Adding gradle build for Java grpc by nathanmittler · 10 years ago
  67. 66ce667 Updating version of gRPC maven build to 0.1.0-SNAPSHOT. by nathanmittler · 10 years ago
  68. 4523059 Upgrade OkHttp for Android SNI / NPN fix by ejona · 10 years ago
  69. fc30031 Change default gRPC protocol to v2. by ejona · 10 years ago
  70. 56e307f Add BSD license header to all source files by lryan · 10 years ago
  71. 9dd0c94 Add SslSocketFactory support to OkHttpTransportFactory. by rocking · 10 years ago
  72. 2b116ef Encode binary headers with Base64 on the wire, and requires all binary headers by zhangkun · 10 years ago
  73. 751a4df Remove JDK1.7 method InetSocketAddress#getHostString since JDK1.7 is only supported by Android after 4.4 KitKat. by simonma · 10 years ago
  74. 8375cd0 GRPC Java clients will send the "te: trailers" header, and the server will by zhangkun · 10 years ago
  75. c5e70c2 Remove StreamState and use inboundPhase/outboundPhase instead by lryan · 10 years ago
  76. 0d8477c Adding crude outbound flow control to OkHttp transport. by nathanmittler · 10 years ago
  77. 5d953e8 Updating gRPC code to use the latest Netty with application-level flow control support. by nathanmittler · 10 years ago
  78. 669724a Rationalize the XXXStream classes to reduce code smear and make Netty/OkHTTP behave more consistently. by lryan · 10 years ago
  79. a71d887 Make all transport factories package-private in favor of channel builders. by zhangkun · 10 years ago
  80. 9a5a8de [1/3] Move AbstractTransportTest to third_party. by ejona · 10 years ago
  81. ffc18f6 Adding MOE configuration for grpc_java. by nathanmittler · 10 years ago
  82. 29cbef1 Renaming gRPC-java "newtransport" package to just "transport". by nathanmittler · 10 years ago