1. 15 Oct, 2013 9 commits
  2. 14 Oct, 2013 7 commits
  3. 13 Oct, 2013 6 commits
    • Luca Barbato's avatar
      cavs: Check for negative cbp · 39185ec4
      Luca Barbato authored
      Sample-Id: 00000647-google
      Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
      CC: libav-stable@libav.org
      39185ec4
    • Luca Barbato's avatar
      cavs: Return meaningful error values · 1b20d0f5
      Luca Barbato authored
      1b20d0f5
    • Luca Barbato's avatar
      cavs: K&R formatting cosmetics · 14ddbb47
      Luca Barbato authored
      14ddbb47
    • Martin Storsjö's avatar
      http: Support auth method detection for POST · 71549a85
      Martin Storsjö authored
      Inspired by a patch by Jakob van Bethlehem. But instead of doing
      an empty POST first to trigger the WWW-Authenticate header (which
      would succeed if no auth actually was required), add an Expect:
      100-continue header, which is meant to be used exactly for
      cases like this.
      
      The header is added if doing a post, and the user has specified
      authentication but we don't know the auth method yet.
      
      Not all common HTTP servers support the Expect: 100-continue header,
      though, so we only try to use it when it really is needed. The user
      can request it to be added for other POST requests as well via
      an option - which would allow the caller to know immediately that
      the POST has failed (e.g. if no auth was provided but the server
      required it, or if the target URL simply doesn't exist).
      
      This is only done for write mode posts (e.g. posts without pre-set
      post_data) - for posts with pre-set data, we can just redo the post
      if it failed due to 401.
      Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
      71549a85
    • Martin Storsjö's avatar
      http: Add an option for forcing basic authentication · eb8b05a3
      Martin Storsjö authored
      The default is to autodetect the auth method. This does require one
      extra request (and also closing and reopening the http connection).
      For some cases such as HTTP POST, the autodetection is not handled
      properly (yet).
      
      No option is added for digest, since this method requires getting
      nonce parameters from the server first and can't be used straight
      away like Basic.
      Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
      eb8b05a3
    • Derek Buitenhuis's avatar
      pthread: Fix deadlock during thread initialization · eb90a209
      Derek Buitenhuis authored
      Sometimes, if pthread_create() failed, then pthread_cond_wait() could
      accidentally be called in the worker threads after the uninit function
      had already called pthread_cond_broadcast(), leading to a deadlock.
      
      Don't call pthread_cond_wait() if c->done is set.
      Signed-off-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
      eb90a209
  4. 12 Oct, 2013 14 commits
  5. 10 Oct, 2013 4 commits