1. 15 Dec, 2010 1 commit
  2. 09 Dec, 2010 1 commit
  3. 08 Dec, 2010 1 commit
  4. 03 Dec, 2010 1 commit
  5. 28 Nov, 2010 1 commit
  6. 20 Nov, 2010 1 commit
  7. 12 Nov, 2010 2 commits
    • Daniel Stenberg's avatar
      curl.1: "a file", not an · c539b831
      Daniel Stenberg authored
      c539b831
    • Daniel Stenberg's avatar
      version-check.pl: display version number for symbols · 0a2edfc3
      Daniel Stenberg authored
      This script is the start of a helper tool that scans a source code and
      outputs the most recent libcurl version it finds symbols for. Meaning
      that if there's no conditions in the code, that's the earliest libcurl
      version the scanned code requires.
      
      It is not added to the Makefile.am yet as it is still a bit crude, but
      I'm committing it to keep it and allow us to work on it.
      0a2edfc3
  8. 11 Nov, 2010 1 commit
    • 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
  9. 09 Nov, 2010 1 commit
  10. 08 Nov, 2010 3 commits
  11. 07 Nov, 2010 1 commit
  12. 04 Nov, 2010 5 commits
  13. 03 Nov, 2010 1 commit
    • Daniel Stenberg's avatar
      symbols-in-versions: added 119 missing symbols · 52e3c60c
      Daniel Stenberg authored
      I've developed a script I call symbol-scan.pl that scans the curl.h and
      multi.h header files and compare the symbols it finds in there with the
      symbols symbols-in-versions documents and outputs a report on the
      differences.  Using this I've dug through the history to fill up
      symbols-in-versions with all the symbols my script found mismatches for.
      
      I will commit symbol-scan.pl separatly and think of a way to put it to
      use in the build/tests so that we from now on will get this in-sync
      check automatically.
      52e3c60c
  14. 02 Nov, 2010 2 commits
  15. 19 Oct, 2010 2 commits
  16. 14 Oct, 2010 1 commit
  17. 12 Oct, 2010 2 commits
  18. 07 Oct, 2010 1 commit
    • Dan Locks's avatar
      libcurl.m4: AC_PATH_PROG fixes · cda02fb7
      Dan Locks authored
      The invocation of autoconf's AC_PATH_PROG( ) is not quite right for
      finding curl-config. This fix corrects the negative case (where
      curl-config is not found).
      cda02fb7
  19. 06 Oct, 2010 1 commit
  20. 05 Oct, 2010 1 commit
  21. 04 Oct, 2010 1 commit
  22. 01 Oct, 2010 1 commit
  23. 30 Sep, 2010 1 commit
    • Dirk Manske's avatar
      multi & hiper examples: updates and cleanups · 5fb4279e
      Dirk Manske authored
      all multi and hiper examples:
      
      * don't loop curl_multi_perform calls, that was <7.20.0 style, currently
        the exported multi functions will not return CURLM_CALL_MULTI_PERFORM
      
      all hiper examples:
      * renamed check_run_count to check_multi_info
      * don't  compare current running handle count with previous value, this
        was the wrong way to check for finished requests, simply call
        curl_multi_info_read
      * it's also safe to call curl_multi_remove_handle inside the
        curl_multi_info_read loop.
      
      ghiper.c:
      * replaced curl_multi_socket (that function is marked as obsolete) calls
        with curl_multi_socket_action calls (as in hiperfifo.c and
        evhiperfifo.c)
      
      ghiper.c and evhiperfifo.c:
      * be smart as hiperfifo.c, don't do uncessary curl_multi_* calls in
        new_conn and main
      5fb4279e
  24. 21 Sep, 2010 1 commit
  25. 20 Sep, 2010 1 commit
  26. 15 Sep, 2010 1 commit
  27. 14 Sep, 2010 1 commit
    • James Bursa's avatar
      getinmemory: make the example easier to follow · fbefd816
      James Bursa authored
      1. Remove the comment warning that it's "not been verified to work". It
         works with no problems in my testing.
      
      2. Remove 2 unnecessary includes.
      
      3. Remove the myrealloc(). Initialize chunk.memory with malloc() instead
         of NULL. The comments for these two parts contradicted each other.
      
      4. Handle out of memory from realloc() instead of continuing.
      
      5. Print a brief status message at the end.
      fbefd816
  28. 09 Sep, 2010 1 commit
  29. 08 Sep, 2010 2 commits