Skip to content
  1. Jan 09, 2008
  2. Jan 08, 2008
  3. Jan 07, 2008
  4. Jan 06, 2008
  5. Jan 05, 2008
  6. Jan 04, 2008
  7. Jan 03, 2008
  8. Jan 02, 2008
    • Daniel Stenberg's avatar
      one gone, one added · 6787d1ed
      Daniel Stenberg authored
      6787d1ed
    • Daniel Stenberg's avatar
      - I fixed two cases of missing return code checks when handling chunked · d9023c16
      Daniel Stenberg authored
        decoding where a write error (or abort return from a callback) didn't stop
        libcurl's processing.
      d9023c16
    • Daniel Stenberg's avatar
      I removed the socklen_t use from the public curl/curl.h header and instead · 193d33fd
      Daniel Stenberg authored
      made it an unsigned int. The type was only used in the curl_sockaddr struct
      definition (only used by the curl_opensocket_callback). On all platforms I
      could find information about, socklen_t is 32 unsigned bits large so I don't
      think this will break the API or ABI. The main reason for this change is of
      course for all the platforms that don't have a socklen_t definition in their
      headers to build fine again. Providing our own configure magic and custom
      definition of socklen_t on those systems proved to work but was a lot of
      cruft, code and extra magic needed - when this very small change of type seems
      harmless and still solves the missing socklen_t problem.
      193d33fd