1. 13 Jul, 2020 2 commits
  2. 28 Jun, 2020 1 commit
  3. 18 Jun, 2020 2 commits
  4. 17 Jun, 2020 1 commit
    • Tomas Krizek's avatar
      doc: clarify flow control behaviour for nghttp2_session_send() · f76ac196
      Tomas Krizek authored
      The previous wording implied that if send_callback doesn't return
      NGHTTP2_ERR_WOULDBLOCK, this function would always send all
      submitted requests / data. This is not the case, since flow control can
      cause some data to remain queued until WINDOW_UPDATE is received.
      f76ac196
  5. 10 Jun, 2020 1 commit
  6. 05 Jun, 2020 5 commits
  7. 02 Jun, 2020 6 commits
  8. 05 May, 2020 2 commits
  9. 22 Apr, 2020 1 commit
  10. 21 Apr, 2020 2 commits
  11. 18 Apr, 2020 6 commits
  12. 31 Mar, 2020 4 commits
  13. 18 Mar, 2020 1 commit
  14. 20 Feb, 2020 3 commits
  15. 11 Feb, 2020 2 commits
  16. 24 Jan, 2020 1 commit
    • Geoff Hill's avatar
      Enable session_create_idle_stream test, fix errors · 866eadb5
      Geoff Hill authored
      Add the currently-unused `test_nghttp2_session_create_idle_stream()`
      function to the test suite definition.
      
      Modify the test in two places to make it pass:
      
        * Use stream ID=10 as the priority stream ID to test automatic creation
          of streams for priority specs. The code below checks against stream
          ID=10 so I assume this was a typo in the test.
      
        * Set the `last_sent_stream_id` instead of the `next_stream_id` to test
          that idle streams cannot be created with smaller numbers than the
          most-recently-seen stream ID. Looking at the validation path in
          `session_detect_idle_stream()`, I think this was another test typo.
      866eadb5