diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-12-19 07:30:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-12-19 07:30:51 +0000 |
commit | 2c100371d25ab68517192d2b7192764aa133cb4d (patch) | |
tree | 8be1dc7b66e806cc6d7930c9469003fd9ec76d9f /docs/FAQ | |
parent | 184ad46a27dc65a82faa2cda76fe91bcca3404cf (diff) | |
download | curl-2c100371d25ab68517192d2b7192764aa133cb4d.tar.gz |
NTLM details added
Diffstat (limited to 'docs/FAQ')
-rw-r--r-- | docs/FAQ | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -1,4 +1,4 @@ -Updated: December 14, 2000 (http://curl.haxx.se/docs/faq.shtml) +Updated: December 19, 2000 (http://curl.haxx.se/docs/faq.shtml) _ _ ____ _ ___| | | | _ \| | / __| | | | |_) | | @@ -45,11 +45,12 @@ FAQ 4.6 Can you tell me what error code 142 means? 4.7 How do I keep usernames and passwords secret in Curl command lines? 4.8 I found a bug! + 4.9 Curl can't authenticate to the server that requires NTLM? 5. libcurl Issues 5.1 Is libcurl thread safe? 5.2 How can I receive all data into a large memory chunk? - 5.3 How do a fetch multiple files with libcurl? + 5.3 How do I fetch multiple files with libcurl? 6. License Issues 6.1 I have a GPL program, can I use the libcurl library? @@ -391,6 +392,10 @@ FAQ operating system name and version and complete instructions how to repeat the bug. + 4.9. Curl can't authenticate to the server that requires NTLM? + + NTLM is a Microsoft proprietary protocol. Unfortunately, curl does not + currently support that. 5. libcurl Issues @@ -437,7 +442,7 @@ FAQ return realsize; } - 5.3 How do a fetch multiple files with libcurl? + 5.3 How do I fetch multiple files with libcurl? The easy interface of libcurl does not support multiple requests using the same connection. The only available way to do multiple requests is to |