1. 31 Aug, 2013 6 commits
  2. 30 Aug, 2013 6 commits
  3. 29 Aug, 2013 7 commits
  4. 28 Aug, 2013 7 commits
  5. 27 Aug, 2013 6 commits
  6. 26 Aug, 2013 8 commits
    • Steve Holme's avatar
      RELEASE-NOTES: synced with acf59be7 · 9d957294
      Steve Holme authored
      9d957294
    • Kyle L. Huff's avatar
      curl: added --bearer option to help · acf59be7
      Kyle L. Huff authored
      Added the --bearer option to the help output
      acf59be7
    • Kyle L. Huff's avatar
      curl: added basic SASL XOAUTH2 support · e7dcc454
      Kyle L. Huff authored
      Added the ability to specify an XOAUTH2 bearer token [RFC6750] via the
      --bearer option.
      
      Example usage:
        curl --url "imaps://imap.gmail.com:993/INBOX/;UID=1" --ssl-reqd
        --bearer ya29.AHES6Z...OMfsHYI --user username@example.com
      e7dcc454
    • Steve Holme's avatar
      tool_urlglob.c: Fixed compiler warnings · 84789e12
      Steve Holme authored
      warning: 'variable' may be used uninitialized in this function
      84789e12
    • Daniel Stenberg's avatar
      security.h: rename to curl_sec.h to avoid name collision · 460fb120
      Daniel Stenberg authored
      I brought back security.h in commit bb552933. As we actually
      already found out back in 2005 in commit 62970da6, the file name
      security.h causes problems so I renamed it curl_sec.h instead.
      460fb120
    • Daniel Stenberg's avatar
      runtests.pl: allow -vc point to a separate curl binary to verify with · 63d8b3a5
      Daniel Stenberg authored
      The specified curl binary will then be used to verify the running
      server(s) instead of the development version. This is very useful in
      some cases when the development version fails to verify correctly as
      then the test case may not run at all.
      
      The actual test will still be run with the "normal" curl executable
      (unless the test case specifies something differently).
      63d8b3a5
    • Kyle L. Huff's avatar
      smtp: added basic SASL XOAUTH2 support · 90ab65c6
      Kyle L. Huff authored
      Added the ability to use an XOAUTH2 bearer token [RFC6750] with SMTP for
      authentication using RFC6749 "OAuth 2.0 Authorization Framework".
      
      The bearer token is expected to be valid for the user specified in
      conn->user. If CURLOPT_XOAUTH2_BEARER is defined and the connection has
      an advertised auth mechanism of "XOAUTH2", the user and access token are
      formatted as a base64 encoded string and sent to the server as
      "AUTH XOAUTH2 <bearer token>".
      90ab65c6
    • Kyle L. Huff's avatar
      imap: added basic SASL XOAUTH2 support · 34122800
      Kyle L. Huff authored
      Added the ability to use an XOAUTH2 bearer token [RFC6750] with IMAP for
      authentication using RFC6749 "OAuth 2.0 Authorization Framework".
      
      The bearer token is expected to be valid for the user specified in
      conn->user. If CURLOPT_XOAUTH2_BEARER is defined and the connection has
      an advertised auth mechanism of "XOAUTH2", the user and access token are
      formatted as a base64 encoded string and sent to the server as
      "A001 AUTHENTICATE XOAUTH2 <bearer token>".
      34122800