1. 08 Aug, 2010 1 commit
  2. 07 Aug, 2010 4 commits
  3. 06 Aug, 2010 5 commits
  4. 05 Aug, 2010 1 commit
  5. 04 Aug, 2010 3 commits
  6. 03 Aug, 2010 2 commits
  7. 02 Aug, 2010 12 commits
  8. 01 Aug, 2010 7 commits
  9. 31 Jul, 2010 2 commits
  10. 30 Jul, 2010 3 commits
    • Daniel Stenberg's avatar
      warning: silence a win64 compiler warning · 2f0c1185
      Daniel Stenberg authored
      conversion from 'size_t' to 'curl_socklen_t', possible loss of data
      
      Reported by: Adam Light
      2f0c1185
    • Daniel Stenberg's avatar
      KNOWN_BUG: The SOCKET type in Win64 is 64 bits · 53e47ca9
      Daniel Stenberg authored
      The SOCKET type in Win64 is 64 bits large (and thus so is curl_socket_t
      on that platform), and long is only 32 bits. It makes it impossible for
      curl_easy_getinfo() to return a socket properly with the
      CURLINFO_LASTSOCKET option as for all other operating systems.
      53e47ca9
    • Daniel Stenberg's avatar
      smtp_connect: always provide host name buffer · 314117cb
      Daniel Stenberg authored
      Previously the host name buffer was only used if gethostname() exists,
      but since we converted that into a curl private function that function
      always exists and will be used so the buffer needs to exist for all
      cases/systems.
      314117cb