Skip to content
Snippets Groups Projects
  1. Dec 17, 2010
    • Brad Hards's avatar
      smtp-tls: new example · 57523e35
      Brad Hards authored
      This example shows how to send SMTP with TLS
      57523e35
    • Brad Hards's avatar
      Docs: add simple SMTP example · 37a22d47
      Brad Hards authored
      Add a simple SMTP example program, patterned after some of the existing
      examples, and the curl application.
      
      This version addresses issues raised by David Woodhouse on comments in
      the simplesmtp.c example.
      37a22d47
  2. Dec 16, 2010
  3. Dec 15, 2010
  4. Dec 09, 2010
  5. Dec 08, 2010
  6. Dec 03, 2010
  7. Nov 28, 2010
  8. Nov 20, 2010
  9. Nov 12, 2010
    • 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
  10. Nov 11, 2010
    • 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
  11. Nov 09, 2010
  12. Nov 08, 2010
  13. Nov 07, 2010
  14. Nov 04, 2010
  15. Nov 03, 2010
    • 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
  16. Nov 02, 2010
  17. Oct 19, 2010
  18. Oct 14, 2010
  19. Oct 12, 2010
  20. Oct 07, 2010
    • 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
  21. Oct 06, 2010
  22. Oct 05, 2010
  23. Oct 04, 2010
  24. Oct 01, 2010
  25. Sep 30, 2010
    • 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
  26. Sep 21, 2010
  27. Sep 20, 2010
Loading