Skip to content
Snippets Groups Projects
  1. Feb 09, 2013
  2. Jan 28, 2013
  3. Jul 03, 2012
  4. May 27, 2012
  5. May 22, 2012
  6. Apr 26, 2012
  7. Apr 20, 2012
  8. Dec 30, 2011
  9. Sep 25, 2011
  10. Sep 23, 2011
  11. Sep 21, 2011
  12. Sep 20, 2011
  13. Mar 11, 2011
  14. Mar 24, 2010
  15. Sep 03, 2009
  16. May 09, 2008
  17. Apr 02, 2008
  18. Mar 31, 2008
  19. Feb 18, 2008
  20. Jan 29, 2008
  21. Jan 17, 2008
  22. Aug 25, 2007
  23. Aug 24, 2007
  24. Aug 21, 2007
  25. Aug 20, 2007
  26. Aug 19, 2007
  27. Aug 14, 2007
  28. Aug 08, 2007
  29. Aug 03, 2007
  30. Jul 04, 2007
  31. Feb 20, 2007
    • Yang Tse's avatar
      curl tool was using functions curlx_tvnow and curlx_tvdiff which are not · e268e855
      Yang Tse authored
      part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx
      The documented way of using them would be to use timeval.c as a source code file.
      
      The above described method works very well when statically linking libcurl and
      apps, curl tool, but has several drawbacks when you build a true shared
      libcurl (i.e. Name space clash at linkage stage as functions are defined more
      than once. Windows makefiles are not capable of handling this system of
      source-level sharing)
      
      So...
      
      Now curlutil.h and curlutil.c define and implement cutil_tvnow and cutil_tvdiff
      which replace curlx_tvnow and curlx_tvdiff for the curl tool. Doing this we
      avoid the above described problems.
      e268e855
  32. Feb 15, 2007
Loading