summaryrefslogtreecommitdiff
path: root/lib/socks_sspi.c
Commit message (Collapse)AuthorAgeFilesLines
...
* compiler warning: fixYang Tse2011-05-261-0/+1
| | | | Fix compiler warning: conversion may lose significant bits
* source cleanup: unify look, style and indent levelsDaniel Stenberg2011-04-271-16/+20
| | | | | By the use of a the new lib/checksrc.pl script that checks that our basic source style rules are followed.
* Changed some nonportable typesDan Fandrich2011-04-051-1/+1
|
* Curl_timeleft: s/conn/data in first argumentDaniel Stenberg2011-01-041-2/+2
| | | | | As the function doesn't really use the connectdata struct but only the SessionHanadle struct I modified what argument it wants.
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-241-1/+0
|
* add inclusion of curl_memory.hYang Tse2010-01-231-0/+1
|
* Moved potential inclusion of system's malloc.h and memory.h header files toYang Tse2009-04-211-3/+0
| | | | | setup_once.h. Inclusion of each header file is based on the definition of NEED_MALLOC_H and NEED_MEMORY_H respectively.
* use the internal snprintf() functionYang Tse2009-02-231-2/+5
|
* Introduced curl_sspi.c and curl_sspi.h for the implementation of functionsYang Tse2009-01-291-109/+115
| | | | | | | Curl_sspi_global_init() and Curl_sspi_global_cleanup() which previously were named Curl_ntlm_global_init() and Curl_ntlm_global_cleanup() in http_ntlm.c Also adjusted socks_sspi.c to remove the link-time dependency on the Windows SSPI library using it now in the same way as it was done in http_ntlm.c.
* added some more messages to SSPI error functionYang Tse2009-01-291-1/+37
|
* Avoid inclusion of ntsecapi.h and directly provide the KERB_WRAP_NO_ENCRYPTYang Tse2009-01-291-1/+6
| | | | definition to avoid a 'STRING' duplicate definition from OpenSSL's safestack.h
* fix compiler warningsYang Tse2009-01-291-10/+10
|
* - Markus Moeller introduced two new options to libcurl:Daniel Stenberg2009-01-281-0/+649
CURLOPT_SOCKS5_GSSAPI_SERVICE and CURLOPT_SOCKS5_GSSAPI_NEC to allow libcurl to do GSS-style authentication with SOCKS5 proxies. The curl tool got the options called --socks5-gssapi-service and --socks5-gssapi-nec to enable these.