1. 29 Sep, 2014 3 commits
  2. 28 Sep, 2014 8 commits
  3. 27 Sep, 2014 5 commits
  4. 26 Sep, 2014 2 commits
    • Tatsuhiro Tsujikawa's avatar
      Remove boost LDFLAGS from examples · e887b251
      Tatsuhiro Tsujikawa authored
      e887b251
    • Tatsuhiro Tsujikawa's avatar
      Clear 2 types of stream deferred flag indenpendently · be0f6dca
      Tatsuhiro Tsujikawa authored
      Previously when nghttp2_stream_resume_deferred_data() is called,
      deferred flags in stream->flags are all cleared.  This is not ideal
      because if application returned NGHTTP2_ERR_DEFERRED, and also that
      stream is deferred by flow control, then all flags are cleared and
      read callback will be invoked again.  This commit fixes this issue.
      This changes error condition of nghttp2_session_resume_data().
      Previously we return error if stream was deferred by flow control.
      Now we don't return error in this case.  We just clear
      NGHTTP2_FLAG_DEFERRED_USER and if still
      NGHTTP2_FLAG_DEFERRED_FLOW_CONTROL is set, just return 0.
      be0f6dca
  5. 25 Sep, 2014 2 commits
    • Tatsuhiro Tsujikawa's avatar
      Update doc · 937bb9f7
      Tatsuhiro Tsujikawa authored
      937bb9f7
    • Tatsuhiro Tsujikawa's avatar
      Optimize connection level remote flow control · a11fbf6e
      Tatsuhiro Tsujikawa authored
      Previously when connection level remote flow control window gets 0, we
      mark the stream having DATA frame with
      NGHTTP2_STREAM_FLAG_DEFERRED_FLOW_CONTROL.  When connection level
      WINDOW_UPDATE is received, we checks all existing streams, including
      closed ones, and call nghttp2_stream_resume_deferred_data().  The
      profiler shows this is expensive.
      
      Now we prepare dedicated priority queue for DATA frames.  And we don't
      mark stream with NGHTTP2_STREAM_FLAG_DEFERRED_FLOW_CONTROL when DATA
      cannot be sent solely due to connection level flow control.  Instead,
      we just queue DATA item to queue.  We won't pop DATA item from queue
      when connection level remote window size is 0.  This way, we avoid the
      expensive operation for all streams when WINDOW_UPDATE is arrived.
      a11fbf6e
  6. 24 Sep, 2014 5 commits
  7. 23 Sep, 2014 7 commits
  8. 18 Sep, 2014 5 commits
  9. 17 Sep, 2014 3 commits