Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stream Multiplexing and Flow Control #14

Closed
wants to merge 150 commits into from

Commits on Dec 7, 2018

  1. HPACK sources and HTTP/2 Frame Headers (vibe-d#8)

    GallaFrancesco committed Dec 7, 2018
    Configuration menu
    Copy the full SHA
    2c68f92 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'upstream/master'

    GallaFrancesco committed Dec 7, 2018
    Configuration menu
    Copy the full SHA
    fc23467 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2019

  1. Merge remote-tracking branch 'upstream/master'

    GallaFrancesco committed Jan 31, 2019
    Configuration menu
    Copy the full SHA
    68d2e71 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2019

  1. Context holds pointer to IndexingTable

    GallaFrancesco committed Feb 4, 2019
    Configuration menu
    Copy the full SHA
    dcc76b4 View commit details
    Browse the repository at this point in the history
  2. Fixup switch for cleartext HTTP/2

    GallaFrancesco committed Feb 4, 2019
    Configuration menu
    Copy the full SHA
    cf76928 View commit details
    Browse the repository at this point in the history
  3. IndexingTable is allocated

    GallaFrancesco committed Feb 4, 2019
    Configuration menu
    Copy the full SHA
    2d785b5 View commit details
    Browse the repository at this point in the history
  4. Multiplexing support through multiplexing module

    GallaFrancesco committed Feb 4, 2019
    Configuration menu
    Copy the full SHA
    f338e1a View commit details
    Browse the repository at this point in the history
  5. Context holds IndexingTable

    GallaFrancesco committed Feb 4, 2019
    Configuration menu
    Copy the full SHA
    d6e27c9 View commit details
    Browse the repository at this point in the history
  6. multiplexing module

    GallaFrancesco committed Feb 4, 2019
    Configuration menu
    Copy the full SHA
    51f1037 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2019

  1. Fixup http version

    GallaFrancesco committed Feb 18, 2019
    Configuration menu
    Copy the full SHA
    fe38748 View commit details
    Browse the repository at this point in the history
  2. Multiplexing support in exchange

    GallaFrancesco committed Feb 18, 2019
    Configuration menu
    Copy the full SHA
    f5a83f4 View commit details
    Browse the repository at this point in the history
  3. Fixed padding bug in frame.d, exceptions

    GallaFrancesco committed Feb 18, 2019
    Configuration menu
    Copy the full SHA
    4dbc516 View commit details
    Browse the repository at this point in the history
  4. Exceptions in HPACK, fixed decoding bug

    GallaFrancesco committed Feb 18, 2019
    Configuration menu
    Copy the full SHA
    97c3740 View commit details
    Browse the repository at this point in the history
  5. multiplexing support, handlers

    GallaFrancesco committed Feb 18, 2019
    Configuration menu
    Copy the full SHA
    dcb3175 View commit details
    Browse the repository at this point in the history
  6. State changes

    GallaFrancesco committed Feb 18, 2019
    Configuration menu
    Copy the full SHA
    e89b61c View commit details
    Browse the repository at this point in the history
  7. Multiplexing and global table state

    GallaFrancesco committed Feb 18, 2019
    Configuration menu
    Copy the full SHA
    3555ecc View commit details
    Browse the repository at this point in the history
  8. error module

    GallaFrancesco committed Feb 18, 2019
    Configuration menu
    Copy the full SHA
    94e791f View commit details
    Browse the repository at this point in the history
  9. writeln fixup

    GallaFrancesco committed Feb 18, 2019
    Configuration menu
    Copy the full SHA
    10e16c9 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2019

  1. enforceHTTP2

    GallaFrancesco committed Feb 21, 2019
    Configuration menu
    Copy the full SHA
    af815ba View commit details
    Browse the repository at this point in the history
  2. Main DATA Frame send logic

    GallaFrancesco committed Feb 21, 2019
    Configuration menu
    Copy the full SHA
    ca434ac View commit details
    Browse the repository at this point in the history
  3. enforceHTTP2

    GallaFrancesco committed Feb 21, 2019
    Configuration menu
    Copy the full SHA
    5033d33 View commit details
    Browse the repository at this point in the history
  4. Fixed bug in decoding of long header fields (i.e. cookies)

    GallaFrancesco committed Feb 21, 2019
    Configuration menu
    Copy the full SHA
    597e3eb View commit details
    Browse the repository at this point in the history
  5. exception handling

    GallaFrancesco committed Feb 21, 2019
    Configuration menu
    Copy the full SHA
    6d45f0e View commit details
    Browse the repository at this point in the history
  6. Control flow management via conditions

    GallaFrancesco committed Feb 21, 2019
    Configuration menu
    Copy the full SHA
    10dd24b View commit details
    Browse the repository at this point in the history
  7. Constraints on setting values

    GallaFrancesco committed Feb 21, 2019
    Configuration menu
    Copy the full SHA
    0b73c31 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2019

  1. HTTP/2 with prior knowledge

    GallaFrancesco committed Feb 22, 2019
    Configuration menu
    Copy the full SHA
    eb62373 View commit details
    Browse the repository at this point in the history
  2. Allow for missing host header in HTTP/2, logDebug

    GallaFrancesco committed Feb 22, 2019
    Configuration menu
    Copy the full SHA
    6c7cf43 View commit details
    Browse the repository at this point in the history
  3. Prior knowledge, logDebug

    GallaFrancesco committed Feb 22, 2019
    Configuration menu
    Copy the full SHA
    a53c239 View commit details
    Browse the repository at this point in the history
  4. example http2 h2c

    GallaFrancesco committed Feb 22, 2019
    Configuration menu
    Copy the full SHA
    d587176 View commit details
    Browse the repository at this point in the history
  5. fixup closing of streams

    GallaFrancesco committed Feb 22, 2019
    Configuration menu
    Copy the full SHA
    5b48591 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2019

  1. http/2 example

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    de3aff3 View commit details
    Browse the repository at this point in the history
  2. Fixup bug in h2c switching

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    cb660e7 View commit details
    Browse the repository at this point in the history
  3. DATA Frame async dispatch

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    d0b86be View commit details
    Browse the repository at this point in the history
  4. Refactoring + proper IndexingTable allocation

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    0b8cfa0 View commit details
    Browse the repository at this point in the history
  5. Refactoring

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    7ede3ee View commit details
    Browse the repository at this point in the history
  6. Multiplexer ID

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    9499458 View commit details
    Browse the repository at this point in the history
  7. Refactoring

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    c8bb000 View commit details
    Browse the repository at this point in the history
  8. Refactoring + window update logic

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    a162536 View commit details
    Browse the repository at this point in the history
  9. H2C with proper allocation

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    789d4cd View commit details
    Browse the repository at this point in the history
  10. Flow control support

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    8993de4 View commit details
    Browse the repository at this point in the history
  11. Refactoring + comments

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    2abd6e6 View commit details
    Browse the repository at this point in the history
  12. Mux IDs and documenting

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    0c08323 View commit details
    Browse the repository at this point in the history
  13. Support writing headers or just body

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    b6ffee9 View commit details
    Browse the repository at this point in the history
  14. fixup expect header

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    5308bbe View commit details
    Browse the repository at this point in the history
  15. added dispose method

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    6044431 View commit details
    Browse the repository at this point in the history
  16. added unittest for cookies header field

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    215c5d8 View commit details
    Browse the repository at this point in the history
  17. added enforceHPACK

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    9d9f4d3 View commit details
    Browse the repository at this point in the history
  18. fixed bug on integer decoding

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    99e6ab6 View commit details
    Browse the repository at this point in the history
  19. Overloads for unpackHTTP2Frame

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    689b22c View commit details
    Browse the repository at this point in the history
  20. Fixed END_HEADERS flag parsing

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    76d2469 View commit details
    Browse the repository at this point in the history
  21. check reserved bits

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    efc2dfc View commit details
    Browse the repository at this point in the history
  22. Overloads for frame packing and unpacking

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    a0cf27e View commit details
    Browse the repository at this point in the history
  23. Fixed putBytes and serialize to support AllocAppender

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    b74ade0 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    3ad7f4d View commit details
    Browse the repository at this point in the history
  25. exceptions on invalid literal

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    8329f42 View commit details
    Browse the repository at this point in the history
  26. Fixed /// DITTO

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    077a90e View commit details
    Browse the repository at this point in the history
  27. Using hex notation for binary op

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    8984099 View commit details
    Browse the repository at this point in the history
  28. Switched to std.algorithm.mutation.copy

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    89e2105 View commit details
    Browse the repository at this point in the history
  29. scoped parameters

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    c2cb8bf View commit details
    Browse the repository at this point in the history
  30. Fixed HTTP2HeaderField struct to support range ops

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    dd7842e View commit details
    Browse the repository at this point in the history
  31. HTTP/2 version

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    2e2a752 View commit details
    Browse the repository at this point in the history
  32. Switch to HTTP/2 for TLS (ALPN)

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    c84f595 View commit details
    Browse the repository at this point in the history
  33. Switch to HTTP/2 for cleartext connections

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    f7f2058 View commit details
    Browse the repository at this point in the history
  34. writeHeaderOut and imports

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    1800d5f View commit details
    Browse the repository at this point in the history
  35. BodyWriter for H2 and switchToHTTP2

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    cd74141 View commit details
    Browse the repository at this point in the history
  36. Modified writeheader to accept a destination stream

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    52a8c59 View commit details
    Browse the repository at this point in the history
  37. parse HTTP/2 request headers

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    2aeeca6 View commit details
    Browse the repository at this point in the history
  38. Moved HTTP2Settings to settings.d

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    af5e110 View commit details
    Browse the repository at this point in the history
  39. startHTTP2Connection and unittest

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    eaf3892 View commit details
    Browse the repository at this point in the history
  40. HTTP/2 connection handler

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    d33aad2 View commit details
    Browse the repository at this point in the history
  41. Async frame handler

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    b2f0a65 View commit details
    Browse the repository at this point in the history
  42. Frame handler (WIP)

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    d392418 View commit details
    Browse the repository at this point in the history
  43. Handle preface for cleartext protocol switching

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    210c673 View commit details
    Browse the repository at this point in the history
  44. Handle SETTINGS frames

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    5709f16 View commit details
    Browse the repository at this point in the history
  45. HTTP2ConnectionStream (WIP)

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    5ce5802 View commit details
    Browse the repository at this point in the history
  46. test certificates

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    2e5cc85 View commit details
    Browse the repository at this point in the history
  47. HTTP/1 to HTTP/2 exchange utilities, HEADERS frame handler

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    619bd27 View commit details
    Browse the repository at this point in the history
  48. rebased, changed PING frame handling to support copy

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    cb0f9a1 View commit details
    Browse the repository at this point in the history
  49. consistent use of writeVoidBody

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    1c1276e View commit details
    Browse the repository at this point in the history
  50. openssl1.1

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    24374d4 View commit details
    Browse the repository at this point in the history
  51. InetHeaderMap, frame building for h2c

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    a1a8dc7 View commit details
    Browse the repository at this point in the history
  52. reverted dub.sdl

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    871cb9d View commit details
    Browse the repository at this point in the history
  53. Context holds pointer to IndexingTable

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    f68e9f7 View commit details
    Browse the repository at this point in the history
  54. Fixup switch for cleartext HTTP/2

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    8589a23 View commit details
    Browse the repository at this point in the history
  55. IndexingTable is allocated

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    16890fd View commit details
    Browse the repository at this point in the history
  56. Multiplexing support through multiplexing module

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    6146fe3 View commit details
    Browse the repository at this point in the history
  57. Context holds IndexingTable

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    3999464 View commit details
    Browse the repository at this point in the history
  58. multiplexing module

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    b18a91f View commit details
    Browse the repository at this point in the history
  59. Fixup http version

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    fbbd46c View commit details
    Browse the repository at this point in the history
  60. Multiplexing support in exchange

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    39dd035 View commit details
    Browse the repository at this point in the history
  61. Fixed padding bug in frame.d, exceptions

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    561bd24 View commit details
    Browse the repository at this point in the history
  62. Exceptions in HPACK, fixed decoding bug

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    cda93de View commit details
    Browse the repository at this point in the history
  63. multiplexing support, handlers

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    89c090b View commit details
    Browse the repository at this point in the history
  64. State changes

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    7bbc49c View commit details
    Browse the repository at this point in the history
  65. Multiplexing and global table state

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    6adb1d6 View commit details
    Browse the repository at this point in the history
  66. error module

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    de455c6 View commit details
    Browse the repository at this point in the history
  67. writeln fixup

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    bcaf6ec View commit details
    Browse the repository at this point in the history
  68. enforceHTTP2

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    656687f View commit details
    Browse the repository at this point in the history
  69. Main DATA Frame send logic

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    4dcf3f2 View commit details
    Browse the repository at this point in the history
  70. enforceHTTP2

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    4fb5e52 View commit details
    Browse the repository at this point in the history
  71. Fixed bug in decoding of long header fields (i.e. cookies)

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    ec63400 View commit details
    Browse the repository at this point in the history
  72. exception handling

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    9275091 View commit details
    Browse the repository at this point in the history
  73. Control flow management via conditions

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    9d6eed3 View commit details
    Browse the repository at this point in the history
  74. Constraints on setting values

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    506e153 View commit details
    Browse the repository at this point in the history
  75. HTTP/2 with prior knowledge

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    9386dd5 View commit details
    Browse the repository at this point in the history
  76. Allow for missing host header in HTTP/2, logDebug

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    3e8e375 View commit details
    Browse the repository at this point in the history
  77. Prior knowledge, logDebug

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    1ae1f35 View commit details
    Browse the repository at this point in the history
  78. example http2 h2c

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    1fa8ed2 View commit details
    Browse the repository at this point in the history
  79. fixup closing of streams

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    17992fc View commit details
    Browse the repository at this point in the history
  80. http/2 example

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    3bf4708 View commit details
    Browse the repository at this point in the history
  81. Fixup bug in h2c switching

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    9a1f00b View commit details
    Browse the repository at this point in the history
  82. DATA Frame async dispatch

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    6142ff1 View commit details
    Browse the repository at this point in the history
  83. Refactoring + proper IndexingTable allocation

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    180b1ef View commit details
    Browse the repository at this point in the history
  84. Refactoring

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    5cf4430 View commit details
    Browse the repository at this point in the history
  85. Multiplexer ID

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    411e4b0 View commit details
    Browse the repository at this point in the history
  86. Refactoring

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    5991e1d View commit details
    Browse the repository at this point in the history
  87. Refactoring + window update logic

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    9cefa73 View commit details
    Browse the repository at this point in the history
  88. H2C with proper allocation

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    d43279a View commit details
    Browse the repository at this point in the history
  89. Flow control support

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    9a8b5d3 View commit details
    Browse the repository at this point in the history
  90. Refactoring + comments

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    d26ac42 View commit details
    Browse the repository at this point in the history
  91. Mux IDs and documenting

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    0af4257 View commit details
    Browse the repository at this point in the history
  92. Support writing headers or just body

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    18ab7fb View commit details
    Browse the repository at this point in the history
  93. fixup expect header

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    7bbd9db View commit details
    Browse the repository at this point in the history
  94. Configuration menu
    Copy the full SHA
    1e57cc0 View commit details
    Browse the repository at this point in the history
  95. error.d module (GOAWAY)

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    5e1637e View commit details
    Browse the repository at this point in the history
  96. Main DATA Frame send logic

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    86055c4 View commit details
    Browse the repository at this point in the history
  97. enforceHTTP2

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    0e3380a View commit details
    Browse the repository at this point in the history
  98. Fixed bug in decoding of long header fields (i.e. cookies)

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    40e98ae View commit details
    Browse the repository at this point in the history
  99. exception handling

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    e78c68e View commit details
    Browse the repository at this point in the history
  100. Control flow management via conditions

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    27c70c5 View commit details
    Browse the repository at this point in the history
  101. Constraints on setting values

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    c990d81 View commit details
    Browse the repository at this point in the history
  102. HTTP/2 with prior knowledge

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    48398f7 View commit details
    Browse the repository at this point in the history
  103. example http2 h2c

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    1233064 View commit details
    Browse the repository at this point in the history
  104. fixup closing of streams

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    483f640 View commit details
    Browse the repository at this point in the history
  105. http/2 example

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    bc0b877 View commit details
    Browse the repository at this point in the history
  106. Fixup bug in h2c switching

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    4ef96fa View commit details
    Browse the repository at this point in the history
  107. DATA Frame async dispatch

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    3ee75a5 View commit details
    Browse the repository at this point in the history
  108. IndexingTable make allocation, refactoring

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    3064038 View commit details
    Browse the repository at this point in the history
  109. window_update logic

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    8e1a1fe View commit details
    Browse the repository at this point in the history
  110. H2C with proper allocation

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    0ce773e View commit details
    Browse the repository at this point in the history
  111. Flow control support

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    45786f7 View commit details
    Browse the repository at this point in the history
  112. Refactoring, comments

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    b60067d View commit details
    Browse the repository at this point in the history
  113. Support writing headers or just body

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    0d04e21 View commit details
    Browse the repository at this point in the history
  114. Configuration menu
    Copy the full SHA
    fe1dcd3 View commit details
    Browse the repository at this point in the history
  115. fixup assert

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    f640b88 View commit details
    Browse the repository at this point in the history
  116. fix conversion of ulong to uint

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    096e21d View commit details
    Browse the repository at this point in the history
  117. fix dub.sdl of example

    GallaFrancesco committed Feb 28, 2019
    Configuration menu
    Copy the full SHA
    34fb69f View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2019

  1. fix openssl linking error

    GallaFrancesco committed Mar 23, 2019
    Configuration menu
    Copy the full SHA
    f64ca61 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2019

  1. update compiler version in coverage tools

    GallaFrancesco committed Mar 29, 2019
    Configuration menu
    Copy the full SHA
    974f66c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5adde99 View commit details
    Browse the repository at this point in the history