1. 20 Jan, 2011 3 commits
  2. 19 Jan, 2011 8 commits
  3. 18 Jan, 2011 4 commits
  4. 17 Jan, 2011 1 commit
  5. 15 Jan, 2011 1 commit
  6. 14 Jan, 2011 1 commit
  7. 13 Jan, 2011 5 commits
  8. 12 Jan, 2011 5 commits
  9. 11 Jan, 2011 4 commits
  10. 10 Jan, 2011 2 commits
    • Daniel Stenberg's avatar
      connect: use UDP correctly · 08a65b10
      Daniel Stenberg authored
      The idea that the protocol and socktype is part of name resolving in the
      libc functions is nuts. We keep the name resolver functions assume
      TCP/STREAM and we make sure that when we want to connect to a UDP
      service we use the correct UDP/DGRAM set instead. This bug was because
      the ->protocol field was not always set correctly.
      
      This bug was only affecting ipv6-disabled non-cares non-threaded builds.
      
      Bug: http://curl.haxx.se/bug/view.cgi?id=3154436
      Reported by: "dperham"
      08a65b10
    • Quinn Slack's avatar
      SSL: fix memory leak · 1238edae
      Quinn Slack authored
      In OOM situation. Follow-up fix to commit a9cd4f4e.
      1238edae
  11. 08 Jan, 2011 1 commit
  12. 07 Jan, 2011 1 commit
  13. 06 Jan, 2011 2 commits
  14. 05 Jan, 2011 2 commits
    • Daniel Stenberg's avatar
      SSH: speedcheck clobbered existing error · 53014175
      Daniel Stenberg authored
      The just added speedcheck must not ruin the error code if already set
      due to a problem.
      53014175
    • Brad King's avatar
      CMake: Use upstream CheckTypeSize module · 651c0bcd
      Brad King authored
      
      
      The CheckTypeSize module that comes with CMake 2.6.2 and above does
      everything we need and also supports cross-compiling.  Avoid duplicating
      an older version of it here.  This also fixes a cross-compiling error
      because the old line
      
        include ("${CMAKE_MODULE_PATH}/CheckTypeSize.cmake")
      
      failed because CMAKE_MODULE_PATH is a search path and not a directory.
      
      Signed-off-by: default avatarBrad King <brad.king@kitware.com>
      651c0bcd