1. 27 Aug, 2014 1 commit
    • Tatsuhiro Tsujikawa's avatar
      nghttpx: Fix location rewrite is failed because request headers are empty · 0209b7c0
      Tatsuhiro Tsujikawa authored
      Previously we empties request headers after they are sent to
      downstream in order to free memory.  But it turns out that we use
      request headers when rewriting location header response field.  Also
      user reported that request headers are useful to add new features.
      This commits defers the deletion of request headers to the point when
      response headers are deleted (which is after response headers are sent
      to upstream client).
      0209b7c0
  2. 26 Aug, 2014 2 commits
    • Tatsuhiro Tsujikawa's avatar
      python: Add version · 70a8fd59
      Tatsuhiro Tsujikawa authored
      70a8fd59
    • Tatsuhiro Tsujikawa's avatar
      nghttpx: Don't consume response data in downstream on_stream_close_callback · 223242b5
      Tatsuhiro Tsujikawa authored
      Even after on_stream_close_callback, Http2DownstreamConnection is
      still alive and upstream keeps sending response to the client.  The
      consumed bytes are processed normally (data_source_read_callback) and
      also we have a code to consume all allocated bytes for
      Http2DownstreamConnection object when it is deleted.  This means that
      we don't need to and should not consume response data in downstream
      on_stream_close_callback.  If we do, we may get assertion error in
      Http2DownstreamConnection::resume_read().
      223242b5
  3. 25 Aug, 2014 17 commits
  4. 24 Aug, 2014 6 commits
  5. 23 Aug, 2014 5 commits
  6. 21 Aug, 2014 2 commits
  7. 19 Aug, 2014 7 commits