1. 25 Jan, 2012 2 commits
  2. 21 Jan, 2012 2 commits
  3. 19 Jan, 2012 1 commit
  4. 18 Jan, 2012 1 commit
  5. 16 Jan, 2012 2 commits
  6. 04 Jan, 2012 2 commits
  7. 03 Jan, 2012 1 commit
  8. 02 Jan, 2012 1 commit
  9. 30 Dec, 2011 4 commits
  10. 23 Dec, 2011 1 commit
    • Colin Hogben's avatar
      Require a less ancient version of perl · 84e7ea2f
      Colin Hogben authored
      The INTERNALS document suggested that compatibility should be
      maintained with perl version 4, but this was untrue - scripts such as
      chksource.pl and runtests.pl use perl5-isms.
      84e7ea2f
  11. 21 Dec, 2011 1 commit
  12. 20 Dec, 2011 7 commits
  13. 19 Dec, 2011 3 commits
  14. 15 Dec, 2011 2 commits
  15. 12 Dec, 2011 1 commit
    • Jason Glasgow's avatar
      CURLOPT_INTERFACE: avoid resolving interfaces names · 6e4835c7
      Jason Glasgow authored
      Do not try to resolve interfaces names via DNS by recognizing interface
      names in a few ways.  If the interface option argument has a prefix of
      "if!" then treat the argument as only an interface.  Similarly, if the
      interface argument is the name of an interface (even if it does not have
      an IP address assigned), treat it as an interface name.  Finally, if the
      interface argument is prefixed by "host!" treat it as a hostname that
      must be resolved by /etc/hosts or DNS.
      
      These changes allow a client using the multi interfaces to avoid
      blocking on name resolution if the interface loses its IP address or
      disappears.
      6e4835c7
  16. 07 Dec, 2011 2 commits
  17. 05 Dec, 2011 3 commits
    • Daniel Stenberg's avatar
      CURLOPT_CONNECTTIMEOUT: default is 300 seconds · 361cd03d
      Daniel Stenberg authored
      If the option is set to 0, the default timeout will be used - which in
      modern libcurl versions equals 300 seconds (== 5 minutes).
      
      Bug: http://curl.haxx.se/mail/lib-2011-12/0051.html
      Reported by: Vladimir Grishchenko
      361cd03d
    • Rob Ward's avatar
      progress function example: include timed interval · 7e4daaf9
      Rob Ward authored
      Adds a timer based off of CURLINFO_TOTAL_TIME that is used to perform
      certain actions after a minimum amount of time has passed using the
      progress function. As a consequence the curl handle is now also passed
      into the progress function. Progress example now also includes an
      example of how to retreive the TOTAL_TIME and print it out.
      7e4daaf9
    • Daniel Stenberg's avatar
      FTP: call opensocket callback properly · 088ba97a
      Daniel Stenberg authored
      When the new socket is created for an active connection, it is now done
      using the open socket callback.
      
      Test case 596 was modified to run fine, although it hides the fact that
      the close callback is still called too many times, as it also gets
      called for closing sockets that were created with accept().
      088ba97a
  18. 24 Nov, 2011 1 commit
    • Daniel Stenberg's avatar
      symbols.pl: provide LIBCURL_HAS macro for apps · 4403e82f
      Daniel Stenberg authored
      Experience has shown that the symbols-in-versions file is very useful to
      applications that want to build with a wide range of libcurl versions.
      It is however easy to get it wrong and the source gets a bit messy with
      all the fixed numerical comparisions.
      
      The point of this script is to provide an easy-to-use macro for libcurl-
      using applications to do preprocessor checks for specific libcurl
      defines, and yet make the code clearly show what the macro is used for.
      4403e82f
  19. 18 Nov, 2011 2 commits
  20. 17 Nov, 2011 1 commit