Skip to content
Snippets Groups Projects
  1. Oct 17, 2008
  2. Jun 11, 2008
    • Daniel Stenberg's avatar
      - I did a cleanup of the internal generic SSL layer and how the various SSL · 04d5c8fb
      Daniel Stenberg authored
        libraries are supported. Starting now, each underlying SSL library support
        code does a set of defines for the 16 functions the generic layer (sslgen.c)
        uses (all these new function defines use the prefix "curlssl_"). This
        greatly simplified the generic layer in readability by involving much less
        #ifdefs and other preprocessor stuff and should make it easier for people to
        make libcurl work with new SSL libraries.
      
        Hopefully I can later on document these 16 functions somewhat as well.
      
        I also made most of the internal SSL-dependent functions (using Curl_ssl_
        prefix) #defined to nothing when no SSL support is requested - previously
        they would unnecessarily call mostly empty functions.
      04d5c8fb
  3. Jun 10, 2008
  4. Sep 27, 2007
  5. Aug 01, 2007
  6. Jan 05, 2007
  7. Nov 11, 2006
  8. Apr 07, 2005
    • Daniel Stenberg's avatar
      GnuTLS support added. There's now a "generic" SSL layer that we use all over · 6e619393
      Daniel Stenberg authored
      internally, with code provided by sslgen.c. All SSL-layer-specific code is
      then written in ssluse.c (for OpenSSL) and gtls.c (for GnuTLS).
      
      As far as possible, internals should not need to know what SSL layer that is
      in use. Building with GnuTLS currently makes two test cases fail.
      
      TODO.gnutls contains a few known outstanding issues for the GnuTLS support.
      
      GnuTLS support is enabled with configure --with-gnutls
      6e619393
  9. Mar 31, 2005
  10. Mar 16, 2005
    • Daniel Stenberg's avatar
      - Tru64 and some IRIX boxes seem to not like test 237 as it is. Their · 61133545
      Daniel Stenberg authored
        inet_addr() functions seems to use &255 on all numericals in a ipv4 dotted
        address which makes a different failure... Now I've modified the ipv4
        resolve code to use inet_pton() instead in an attempt to make these systems
        better detect this as a bad IP address rather than creating a toally bogus
        address that is then passed on and used.
      61133545
  11. Jan 07, 2004
  12. Oct 08, 2003
  13. Oct 07, 2003
    • Daniel Stenberg's avatar
      Neil Dunbar provided a patch that now makes libcurl check SSL · 6494889e
      Daniel Stenberg authored
        subjectAltNames when matching certs. This is apparently detailed in RFC2818
        as the right thing to do. I had to add configure checks for inet_pton() and
        our own (strictly speaking, code from BIND written by Paul Vixie) provided
        code for the function for platforms that miss it.
      6494889e
  14. Jan 16, 2003
  15. Sep 03, 2002
  16. Mar 19, 2002
  17. May 31, 2001
  18. May 30, 2001
  19. May 29, 2001
  20. Jan 05, 2001
  21. Jan 03, 2001
  22. Oct 17, 2000
  23. Jun 20, 2000
  24. May 22, 2000
  25. Dec 29, 1999
Loading