1. 08 May, 2011 1 commit
    • 1) Fix a problem where a temporary request body would be discarded when retrying on a new connection
      2) By default, all requests using POST, PUT or having a body at the time requestMethod is set will NOT use a persistent connection.
      You can override this by setting requestMethod manually, then setting shouldAttemptPersistentConnection to YES
      
      closes gh-94
      Ben Copsey authored
  2. 07 May, 2011 6 commits
  3. 30 Apr, 2011 1 commit
  4. 11 Apr, 2011 10 commits
  5. 28 Mar, 2011 1 commit
  6. 04 Mar, 2011 1 commit
  7. 06 Feb, 2011 4 commits
  8. 05 Feb, 2011 7 commits
  9. 01 Feb, 2011 1 commit
    • Previously the loop terminated when the output buffer was not completely filled by the previous call. Most of the time this is correct, because if the output buffer was completely filled, there is probably more to come. However, in the situation that the output fits perfectly in the output buffer, the buffer will be completely filled, yet there is nothing left to process.  In this case we would run through the loop again calling inflate() / deflate() which would return Z_BUF_ERROR. This would manifest itself as the request (needlessly) failing.
      
      Rather than this we should simply terminate the loop when there is no more input left to process.
      
      # Please enter the commit message for your changes. Lines starting
      # with '#' will be ignored, and an empty message aborts the commit.
      #
      # Committer: Alex Deem <alexdeem@Alex-MacBook-Pro.local>
      #
      # On branch master
      # Changes to be committed:
      #   (use "git reset HEAD <file>..." to unstage)
      #
      #	modified:   Classes/ASIDataCompressor.m
      #	modified:   Classes/ASIDataDecompressor.m
      #
      Alex Deem authored
  10. 22 Jan, 2011 1 commit
  11. 07 Jan, 2011 3 commits
  12. 06 Jan, 2011 4 commits