1. 7394c11 http2: fix protocol violation regression when writing certain request bodies by Brad Fitzpatrick · 9 years ago
  2. 075e191 http2: adjust flow control on open streams when processing SETTINGS by Brad Fitzpatrick · 9 years ago
  3. 57bfaa8 http2: add more Transport logging around why connections close by Brad Fitzpatrick · 9 years ago
  4. e2ba55e http2: fix Transport.RoundTrip hang on stream error before headers by Brad Fitzpatrick · 9 years ago
  5. 28d1bd4 http2: make Transport work around mod_h2 bug by Brad Fitzpatrick · 9 years ago
  6. 35028a4 http2: don't ignore DATA padding in flow control by Brad Fitzpatrick · 9 years ago
  7. 6a513af http2: return flow control for closed streams by Brad Fitzpatrick · 9 years ago
  8. 9f2c271 http2: fix data race on cc.singleUse by Brad Fitzpatrick · 9 years ago
  9. 3797cd8 http2: make Transport prefer HTTP response header recv before body write error by Brad Fitzpatrick · 9 years ago
  10. be28236 http2: make Transport treat "Connection: close" the same as Request.Close by Brad Fitzpatrick · 9 years ago
  11. a728288 http2: make Transport honor Request.Close more aggressively by Brad Fitzpatrick · 9 years ago
  12. 8e573f4 http2: merge multiple GOAWAY frames' contents into error message by Brad Fitzpatrick · 9 years ago
  13. ef2e00e http2: make Transport return server's GOAWAY error back to the user by Brad Fitzpatrick · 9 years ago
  14. 313cf39 http2: fix data race on pipe by Mikio Hara · 9 years ago
  15. 154d9f9 http2: consider buffered data when doing stream flow control by Andrew Gerrand · 9 years ago
  16. c4c3ea7 http2: GotFirstResponseByte hook should only fire once by Tom Bergan · 9 years ago
  17. b3e9c8f http2: allow http scheme for http2 by ayanamist · 9 years ago
  18. 4d07e8a http2: let handlers close Request.Body without killing streams by Brad Fitzpatrick · 9 years ago
  19. 8a52c78 http2: fix Transport.CloseIdleConnections when http1+http2 are wired together by Brad Fitzpatrick · 9 years ago
  20. 202ff48 http2: delay sending request body in Transport if 100-continue is set by Brad Fitzpatrick · 9 years ago
  21. 5916dcb http2, lex/httplex: make Transport reject bogus headers before sending by Brad Fitzpatrick · 9 years ago
  22. 3b99394 http2: when using Go 1.7, make Transport use httptrace hooks by Brad Fitzpatrick · 9 years ago
  23. 96dbb96 http2: make Transport use Request.Context, set Response.Uncompressed by Brad Fitzpatrick · 9 years ago
  24. b797637 http2: delete pre-Go1.5 request cancellation by Dave Day · 9 years ago
  25. 024ed62 http2: Ignore Keep-Alive header in requests by Roland Shoemaker · 9 years ago
  26. 991d3e3 http2: make Transport handle HEAD responses with DATA frames by Brad Fitzpatrick · 9 years ago
  27. 237fc45 http2: gofmt -w -s by Mikio Hara · 9 years ago
  28. 3f5b0e6 http2: don't override user's Transport.TLSConfig.ServerName by Brad Fitzpatrick · 9 years ago
  29. 9e1fb3c http2: move merging of HEADERS and CONTINUATION into Framer by Brad Fitzpatrick · 9 years ago
  30. cbbbe2b http2: fix crash in Transport on double Read of invalid gzip Response.Body by Brad Fitzpatrick · 9 years ago
  31. 493a262 http2: don't send Connection-level headers in Transport by Brad Fitzpatrick · 9 years ago
  32. 6ccd669 http2: export Server.ServeConn by Brad Fitzpatrick · 9 years ago
  33. 644ffc0 http2: don't add *Response to activeRes in Transport on Headers.END_STREA by Brad Fitzpatrick · 9 years ago
  34. b2ed34f http2: validate received header field values in Server and Transport by Brad Fitzpatrick · 9 years ago
  35. 72aa00c http2: unmailed code review cleanups from previous commit by Brad Fitzpatrick · 9 years ago
  36. f5de73e http2: make Transport respect http1 Transport settings by Brad Fitzpatrick · 9 years ago
  37. 5c0dae8 http2: make Transport send a Content-Length by Brad Fitzpatrick · 9 years ago
  38. c92cdcb http2: make configureTransport return the new t2 transport as well by Brad Fitzpatrick · 9 years ago
  39. 341cd08 http2: add Transport strictness, paranoia, logging for unwanted DATA frames by Brad Fitzpatrick · 9 years ago
  40. 76365a4 http2: fix channel double-close crash by Brad Fitzpatrick · 9 years ago
  41. 0e6d34e http2: relax Trailer predeclaration requirement in Transport by Blake Mizerany · 9 years ago
  42. 415f191 http2: clean up debugging, rename GODEBUG key by Brad Fitzpatrick · 9 years ago
  43. f530c4e http2: mix cleanups, TODOs, new tests, enforce header list size in Transport by Brad Fitzpatrick · 9 years ago
  44. 520af5d http2: make Transport ignore 100-continue responses, add comprehensive tests by Brad Fitzpatrick · 9 years ago
  45. d1ba260 http2: fix Transport cancelation problems by Brad Fitzpatrick · 9 years ago
  46. 1ade16a http2: set default User-Agent if not otherwise specified by Brad Fitzpatrick · 9 years ago
  47. 961116a http2: support CONNECT requests by Brad Fitzpatrick · 9 years ago
  48. 0cb26f7 http2: move HEADERS/CONTINUATION order checking into Framer by Brad Fitzpatrick · 9 years ago
  49. 28273ec http2: make Transport's Response.Body.Close not wait for buffered data by Brad Fitzpatrick · 9 years ago
  50. d2ecd08 http2: send client trailers by Blake Mizerany · 9 years ago
  51. b6b3bda http2: add support for Transport reading trailers from the server by Brad Fitzpatrick · 9 years ago
  52. 74bd44b http2: catch panics server-side, respect RST_STREAM on the Transport side by Brad Fitzpatrick · 9 years ago
  53. cf147af http2: fix build for Go 1.4 users by Brad Fitzpatrick · 9 years ago
  54. 08a7b45 http2: support Request.Cancel in Transport by Brad Fitzpatrick · 9 years ago
  55. b304fd0 http2: send "http/1.1" ALPN in TLS dial in addition to "h2" by Brad Fitzpatrick · 9 years ago
  56. 438097d http2: make the Transport write request body data as it's available by Brad Fitzpatrick · 9 years ago
  57. b092070 http2: add automatic gzip compression for the Transport by Brad Fitzpatrick · 9 years ago
  58. c745c36 http2: client & server fixes by Brad Fitzpatrick · 9 years ago
  59. cf8d7ec http2: minor transport code & docs cleanups by Brad Fitzpatrick · 9 years ago
  60. 042ba42 http2: add ConfigureTransport, like ConfigureServer by Brad Fitzpatrick · 9 years ago
  61. a179abb http2: handle pings in Transport by Brad Fitzpatrick · 9 years ago
  62. d62542d http2: client conn pool abstraction by Brad Fitzpatrick · 9 years ago
  63. 633434a http2: add Transport.RoundTripOpt, adds option to RoundTrip without new dials by Brad Fitzpatrick · 9 years ago
  64. 2fd7f15 http2: another Transport body-writing bug fix, and more tests by Brad Fitzpatrick · 9 years ago
  65. 24ab552 http2: fix Transport's flow control control when writing request bodies by Brad Fitzpatrick · 9 years ago
  66. 1b27761 http2: swallow io.EOF while reading body and flow fix by Blake Mizerany · 9 years ago
  67. ce84af2 http2: append query to :path pseudo-header by Blake Mizerany · 9 years ago
  68. e1a5816 http2: add DialTLS to Transport by Blake Mizerany · 9 years ago
  69. efe38d9 http2: push stream look up later in Transport, address some TODOs/cleanups by Brad Fitzpatrick · 9 years ago
  70. a7d8d4e http2: send WINDOW_UPDATE frames while reading Transport Response bodies by Brad Fitzpatrick · 9 years ago
  71. 6281f06 http2: add per-Response buffered response bodies with separate flow control by Brad Fitzpatrick · 9 years ago
  72. 09d2a41 http2: write Transport bodies by Brad Fitzpatrick · 9 years ago
  73. 2cba614 http2: remove Transport.Fallback by Brad Fitzpatrick · 9 years ago
  74. e71042d http2: add Transport.AddIdleConn by Brad Fitzpatrick · 9 years ago
  75. 9946ad7 http2: quiet Transport logging by Brad Fitzpatrick · 9 years ago
  76. 6d10a0c http2: update copyright headers by Andrew Gerrand · 9 years ago
  77. 7c30255 http2: use net.JoinHostPort by Tamir Duberstein · 10 years ago
  78. ae54c55 http2: rewrite github.com/bradfitz/http2 references to their new paths by Brad Fitzpatrick · 10 years ago
  79. 17e723d http2: move github.com/bradfitz/http2 down into a new http2 directory by Brad Fitzpatrick · 10 years ago[Renamed from transport.go]
  80. 00df6d8 transport: remove debug logs, finish stuff from my earlier commit by Brad Fitzpatrick · 10 years ago
  81. 45702ea transport: cache and re-use client connections by Brad Fitzpatrick · 10 years ago
  82. 7bb8b7c transport: cleanups, CONTINUATION strictness, track active requests per conn by Brad Fitzpatrick · 10 years ago
  83. ddf2004 transport: start of re-using client connections by Brad Fitzpatrick · 10 years ago
  84. 8e4032f transport: set Response.TLS/Request by Blake Mizerany · 10 years ago
  85. 24c6636 transport: set Response.Status[Code] by Blake Mizerany · 10 years ago
  86. 427b572 transport: don't send empty paths; use implicit / by Brad Fitzpatrick · 10 years ago
  87. 33237cf transport: send initial conn-level window update, don't send both Host and :authority by Brad Fitzpatrick · 10 years ago
  88. fcb18db Add the start of a (video-recorded) HTTP/2 Client implementation. by Brad Fitzpatrick · 10 years ago