Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-03-16 | free: instead of Curl_safefree() | Daniel Stenberg | |
Since we just started make use of free(NULL) in order to simplify code, this change takes it a step further and: - converts lots of Curl_safefree() calls to good old free() - makes Curl_safefree() not check the pointer before free() The (new) rule of thumb is: if you really want a function call that frees a pointer and then assigns it to NULL, then use Curl_safefree(). But we will prefer just using free() from now on. | |||
2015-03-03 | mprintf.h: remove #ifdef CURLDEBUG | Daniel Stenberg | |
... and as a consequence, introduce curl_printf.h with that re-define magic instead and make all libcurl code use that instead. | |||
2015-01-18 | sasl_gssapi: Make Curl_sasl_build_gssapi_spn() public | Steve Holme | |
2015-01-18 | sasl_gssapi: Fixed memory leak with local SPN variable | Steve Holme | |
2015-01-09 | gssapi: Remove need for duplicated GSS_C_NT_HOSTBASED_SERVICE definitions | Steve Holme | |
Better code reuse and consistency in calls to gss_import_name(). | |||
2015-01-08 | sasl_gssapi: Fixed build on NetBSD with built-in GSS-API | Steve Holme | |
Bug: http://curl.haxx.se/bug/view.cgi?id=1469 Reported-by: Thomas Klausner | |||
2014-12-28 | sasl_gssapi: Fixed use of dummy username with real username | Steve Holme | |
2014-12-05 | sasl: Corrected formatting of function descriptions | Steve Holme | |
2014-12-05 | sasl_gssapi: Added missing function description | Steve Holme | |
2014-12-05 | sasl_gssapi: Added body to Curl_sasl_create_gssapi_security_message() | Steve Holme | |
2014-12-04 | sasl_gssapi: Fixed missing include from commit d3cca934ee | Steve Holme | |
2014-12-04 | sasl_gssapi: Fixed missing decoding debug failure message | Steve Holme | |
2014-12-04 | sasl_gssapi: Fixed honouring of no mutual authentication | Steve Holme | |
2014-12-03 | sasl_gssapi: Added body to Curl_sasl_create_gssapi_user_message() | Steve Holme | |
2014-12-03 | sasl_gssapi: Added body to Curl_sasl_gssapi_cleanup() | Steve Holme | |
2014-12-03 | sasl_gssapi: Added Curl_sasl_build_gssapi_spn() function | Steve Holme | |
Added helper function for returning a GSS-API compatible SPN. | |||
2014-12-03 | sasl_gssapi: Enable USE_KERBEROS5 for GSS-API based builds | Steve Holme | |
2014-12-02 | sasl_gssapi: Introduced GSS-API based SASL module | Steve Holme | |
Added the initial version of curl_sasl_gssapi.c and updated the project files in preparation for adding GSS-API based Kerberos V5 support. |