1. 0bcc04d http2: fix spec document links by Ronak Jain · 2 years, 8 months ago
  2. 290c469 all: gofmt by Russ Cox · 3 years ago
  3. e0ff5e5 http2: mark some structs as non-comparable by Brad Fitzpatrick · 4 years, 11 months ago
  4. 5a598a2 http2: remove unused errors by Tobias Klauser · 5 years ago
  5. 922f481 http2: reduce init-time work & allocations by Brad Fitzpatrick · 7 years ago
  6. cbb82b5 lex/httplex, http/httpguts: merge the httplex package into httpguts by Brad Fitzpatrick · 7 years ago
  7. dc948df http2: use RFC 723x as normative reference in docs by David Url · 7 years ago
  8. 6b17b9b http2: stop rejecting outgoing paths beginning with two slashes by Brad Fitzpatrick · 8 years ago
  9. c46f265 http2: implement support for server push by Tom Bergan · 8 years ago
  10. e7b1435 http2: optimize server frame writes by Brad Fitzpatrick · 8 years ago
  11. 40a0a18 http2: fix Server race with concurrent Read/Close by Brad Fitzpatrick · 8 years ago
  12. 71a0359 x/net/http2: Fix various typos in doc comments. by Mike Appleby · 9 years ago
  13. 324491d http2: fix bug where '*' as a valid :path value in Transport by Brad Fitzpatrick · 9 years ago
  14. 3a1f9ef http2: don't send bogus :path pseudo headers if Request.URL.Opaque is set by Brad Fitzpatrick · 9 years ago
  15. 7c62cfd http2: add missing import path declaration by Brad Fitzpatrick · 9 years ago
  16. 5916dcb http2, lex/httplex: make Transport reject bogus headers before sending by Brad Fitzpatrick · 9 years ago
  17. 0cc50bb http2: standardize RFC mention format by Dan Peterson · 9 years ago
  18. 31df19d http2: fix truncated comment by Brad Fitzpatrick · 9 years ago
  19. 4876518 http2: don't make garbage when sorting things by Brad Fitzpatrick · 9 years ago
  20. 6ccd669 http2: export Server.ServeConn by Brad Fitzpatrick · 9 years ago
  21. 2e9cee7 http2: clarify field-value grammar in doc; reject DEL in field value by Brad Fitzpatrick · 9 years ago
  22. b2ed34f http2: validate received header field values in Server and Transport by Brad Fitzpatrick · 9 years ago
  23. f5de73e http2: make Transport respect http1 Transport settings by Brad Fitzpatrick · 9 years ago
  24. c93a9b4 http2: log frame reads at log level http2debug=2 also, not just writes by Brad Fitzpatrick · 9 years ago
  25. 415f191 http2: clean up debugging, rename GODEBUG key by Brad Fitzpatrick · 9 years ago
  26. b304fd0 http2: send "http/1.1" ALPN in TLS dial in addition to "h2" by Brad Fitzpatrick · 9 years ago
  27. c745c36 http2: client & server fixes by Brad Fitzpatrick · 9 years ago
  28. a7d8d4e http2: send WINDOW_UPDATE frames while reading Transport Response bodies by Brad Fitzpatrick · 9 years ago
  29. 6d10a0c http2: update copyright headers by Andrew Gerrand · 9 years ago
  30. 17e723d http2: move github.com/bradfitz/http2 down into a new http2 directory by Brad Fitzpatrick · 9 years ago[Renamed from http2.go]
  31. 97124af Remove draft-14 comment in package docs. by Brad Fitzpatrick · 10 years ago
  32. 13dfd89 Advertise 'h2' protocol, now that HTTP/2 is final. by Brad Fitzpatrick · 10 years ago
  33. d95a834 fix truncation of unknown setting ID in SettingID.String by Brad Fitzpatrick · 10 years ago
  34. 2b45947 Move handler writing flow control to serve goroutine's frame scheduler. by Brad Fitzpatrick · 10 years ago
  35. 23564bf Refactor frame writing in prep for the write scheduler and client support. by Brad Fitzpatrick · 10 years ago
  36. 36d9a67 Export the NPN/ALPN protocol constant by Brad Fitzpatrick · 10 years ago
  37. 3c8c613 Rename dataWriteRequest to dataWriteParams, move to http2.go with goAwayParams by Brad Fitzpatrick · 10 years ago
  38. 5e4e2dc Buffer the writing of frames. by Brad Fitzpatrick · 10 years ago
  39. 21896bb Add Framer.WriteRawFrame, add max frame tunable, reject large frames. by Brad Fitzpatrick · 10 years ago
  40. bd39196 CloseNotifier support and associated tests and discovered bugs & fixes by Brad Fitzpatrick · 10 years ago
  41. bc00c57 Process more settings. Several aren't used yet. by Brad Fitzpatrick · 10 years ago
  42. 0db6d65 Add a failing state transition test. by Brad Fitzpatrick · 10 years ago
  43. da4be5d Rename frameAndProcessed to frameAndGate, add little helper type. by Brad Fitzpatrick · 10 years ago
  44. 729bd72 Break responseWriter into small and large parts. by Brad Fitzpatrick · 10 years ago
  45. b331b81 Break http2*.go up into http2 and server parts. by Brad Fitzpatrick · 10 years ago
  46. 6a48feb Send WINDOW_UPDATE frames as Handlers read from their Request.Body. by Brad Fitzpatrick · 10 years ago
  47. ff6db8e Implement request bodies. by Brad Fitzpatrick · 10 years ago
  48. bc7d81f refactoring cleanup by Brad Fitzpatrick · 10 years ago
  49. 03abeab Flow Control work. by Brad Fitzpatrick · 10 years ago
  50. b59345d Respond to PING frames. by Brad Fitzpatrick · 10 years ago
  51. aeecbd8 Require regular headers after pseudo headers. by Brad Fitzpatrick · 10 years ago
  52. 832edb1 Require exactly one pseudo header. by Brad Fitzpatrick · 10 years ago
  53. 8e2815e Require http or https scheme for now in incoming requests. by Brad Fitzpatrick · 10 years ago
  54. c4d60a2 Require pseudo headers in requests. Clear state between requests. by Brad Fitzpatrick · 10 years ago
  55. 8d68f5f Don't allocate mapping response codes to strings. by Brad Fitzpatrick · 10 years ago
  56. 6fe7631 Debug-only runtime tracking of funcs running on correct goroutines. by Brad Fitzpatrick · 10 years ago
  57. d43f8f3 Send RST_STREAM on stream errors. Reject capital headers with stream errors. by Brad Fitzpatrick · 10 years ago
  58. b90dfb0 Handle 'cookie' headers' special case merging. by Brad Fitzpatrick · 10 years ago
  59. 3302cb0 Allow Host or :authority in requests. More tests. by Brad Fitzpatrick · 10 years ago
  60. 137b013 Fix Request's ContentLength and Headers in handlers + more tests by Brad Fitzpatrick · 10 years ago
  61. 3071149 More serverTester test cleanup by Brad Fitzpatrick · 10 years ago
  62. 8aaa0e5 Start of server tests not requiring curl. by Brad Fitzpatrick · 10 years ago
  63. b364811 A basic working responseWriter. Initial tests now pass. by Brad Fitzpatrick · 10 years ago
  64. 34ce56a start of requestBody by Brad Fitzpatrick · 10 years ago
  65. dc523ed Start of calling into server Handler by Brad Fitzpatrick · 10 years ago
  66. d6d38eb move processContinuation to be near processHeaders since they're so similar. by Brad Fitzpatrick · 10 years ago
  67. 7b49447 Start of proper net/http Server integration. by Brad Fitzpatrick · 10 years ago
  68. 0a81e45 SETTINGS writing. by Brad Fitzpatrick · 10 years ago
  69. 753293a update ConfigureServer docs by Brad Fitzpatrick · 10 years ago
  70. e4fab6e update package comment by Brad Fitzpatrick · 10 years ago
  71. 43a7c52 process headers by Brad Fitzpatrick · 11 years ago
  72. 5635422 add serverConn.state accessor by Brad Fitzpatrick · 11 years ago
  73. 6b0e3cc Move each frame type to its own processing method. Add some rules from spec. by Brad Fitzpatrick · 11 years ago
  74. 20d0473 Rename clientConn to serverConn; start of stream state by Brad Fitzpatrick · 11 years ago
  75. 9ae9e71 Feed HeadersFrame data into hpack. Add ContinuationFrame. by Brad Fitzpatrick · 11 years ago
  76. 1772b8e Make some clientConn field names longer by Brad Fitzpatrick · 11 years ago
  77. 3312b17 typo by Brad Fitzpatrick · 11 years ago
  78. c72a9ba Don't allocate a map when receiving settings frames. by Brad Fitzpatrick · 11 years ago
  79. 4658809 Add Framer type. by Brad Fitzpatrick · 11 years ago
  80. e04676d Set npnProto (also ALPN) to 'h2-14', add test hook. by Brad Fitzpatrick · 11 years ago
  81. 5061e99 Start of integration tests with curl by Brad Fitzpatrick · 11 years ago
  82. cf9170b Update frame format to draft-14. Untested. by Brad Fitzpatrick · 11 years ago
  83. 86a0e06 Merge branch 'master' of github.com:bradfitz/http2 by Brad Fitzpatrick · 11 years ago
  84. 08c3f55 add missing copyright headers by Brad Fitzpatrick · 11 years ago
  85. 7338cb2 Start of parsing window update and headers frames. by Brad Fitzpatrick · 11 years ago
  86. a476fa8 work on errors, frame parsing registry, settings by Brad Fitzpatrick · 11 years ago
  87. 2d61f8b start of frames by Brad Fitzpatrick · 11 years ago
  88. b9f5454 read client preface in server by Brad Fitzpatrick · 11 years ago
  89. e9e3f10 start. by Brad Fitzpatrick · 11 years ago