1. 13 Nov, 2010 1 commit
  2. 12 Nov, 2010 5 commits
  3. 11 Nov, 2010 4 commits
    • Daniel Stenberg's avatar
      HTTP Auth: Add CURLAUTH_ONLY · 86367422
      Daniel Stenberg authored
      This is a meta symbol. OR this value together with a single specific
      auth value to force libcurl to probe for un-restricted auth and if not,
      only that single auth algorithm is acceptable.
      
      For example you can use CURLAUTH_DIGEST|CURLAUTH_ONLY to make libcurl
      first probe for what method to use, but yet only consider Digest to be
      acceptable.
      
      Using _only_ CURLAUTH_DIGEST without the CURLAUTH_ONLY field, will make
      libcurl explicitly use Digest right away and not do any probing.
      86367422
    • Daniel Stenberg's avatar
      ip_version: moved to connection struct · a1f32ffe
      Daniel Stenberg authored
      The IP version choice was previously only in the UserDefined struct
      within the SessionHandle, but since we sometimes alter that option
      during a request we need to have it on a per-connection basis.
      
      I also moved more "init conn" code into the allocate_conn() function
      which is designed for that purpose more or less.
      a1f32ffe
    • Yang Tse's avatar
      buildconf: MAC OS X requires libtool version 1.5.26 or newer · fec5f03e
      Yang Tse authored
      MAC OS X requires libtool version 1.5.26 or newer, otherwise
      configure will mishandle *.dSYM directories when it runs.
      fec5f03e
    • Yang Tse's avatar
  4. 10 Nov, 2010 8 commits
  5. 09 Nov, 2010 3 commits
  6. 08 Nov, 2010 11 commits
  7. 07 Nov, 2010 3 commits
  8. 05 Nov, 2010 5 commits
    • Daniel Stenberg's avatar
      --libcurl: simplify output · 517d3eb0
      Daniel Stenberg authored
      Removed the code that was needed for libcurl before 7.19.0 which now is
      more than two years old.
      
      Simplified the top comment and corrected the URL.
      517d3eb0
    • Alfred Gebert's avatar
      LDAP: detect non-binary attributes properly · 6a07e704
      Alfred Gebert authored
      If the query result has a binary attribute, the binary attribute is
      base64 encoded. But all following non binary attributes are also base64
      encoded which is wrong.
      
      This is a test (LDAP server is public).
      
      curl
      ldap://x500.bund.de:389/o=Bund,c=DE?userCertificate,certificateSerialNumber?sub
      ?cn=*Woehleke*
      6a07e704
    • Daniel Stenberg's avatar
      xattr: add configure check and #ifdefs · 95719fbe
      Daniel Stenberg authored
      setxattr is a glibc call to set extended attributes, so configure now
      checks for it and the code is adapted to only build when the
      functionality is present.
      95719fbe
    • Stefan Tomanek's avatar
      save metadata to extended file attributes · fbf51696
      Stefan Tomanek authored
      It is often convinient to track back the source of a once downloaded
      file; this patch makes curl store the source URL and other metadata
      alongside the retrieved file by using the extended attributes (if
      supported by the file system and enabled by --xattr).
      fbf51696
    • Daniel Stenberg's avatar
      test: remove test 580 · 17869507
      Daniel Stenberg authored
      Test 580 is removed again for two reasons:
      
      1) Some compilers aren't satisfied by just a data variable called 'test'
      when first.o wants a function called 'test'. The Solaris compiler says
      "ld: warning: symbol `test' has differing types:" while the AIX compiler
      downright rejects it.
      
      2) Test case 1119 that was added after this test is way more complete
      and cover everything test 580 does and more without introducing the same
      problems.
      17869507