This website requires JavaScript.
Explore
Help
Sign In
generic-library
/
curl
Watch
1
Star
0
Fork
0
You've already forked curl
Code
Issues
Pull Requests
Releases
Wiki
Activity
87ade5f0eb
curl
/
tests
/
libtest
/
.gitignore
8 lines
95 B
Plaintext
Raw
Normal View
History
Unescape
Escape
NTLM tests: boost coverage by forcing the hostname A shared library tests/libtest/.libs/lihostname.so is preloaded in NTLM test-cases to override the system implementation of gethostname(). It makes it possible to test the NTLM authentication for exact match, and this way test the implementation of MD4 and DES. If LD_PRELOAD doesn't work, a debug build willl also workk as debug builds are now made to prefer a specific environment variable and will then return that content as host name instead of the actual one. Kamil wrote the bulk of this, Daniel Stenberg polished it.
2010-07-30 00:47:49 +02:00
chkhostname
ignore more files generated when tests run in the source tree
2010-03-23 12:43:42 +01:00
lib5[0-9][0-9]
libtest: gitignore more binary files
2013-05-08 14:35:45 +02:00
lib15[0-9][0-9]
Multiple pipelines and limiting the number of connections. Introducing a number of options to the multi interface that allows for multiple pipelines to the same host, in order to optimize the balance between the penalty for opening new connections and the potential pipelining latency. Two new options for limiting the number of connections: CURLMOPT_MAX_HOST_CONNECTIONS - Limits the number of running connections to the same host. When adding a handle that exceeds this limit, that handle will be put in a pending state until another handle is finished, so we can reuse the connection. CURLMOPT_MAX_TOTAL_CONNECTIONS - Limits the number of connections in total. When adding a handle that exceeds this limit, that handle will be put in a pending state until another handle is finished. The free connection will then be reused, if possible, or closed if the pending handle can't reuse it. Several new options for pipelining: CURLMOPT_MAX_PIPELINE_LENGTH - Limits the pipeling length. If a pipeline is "full" when a connection is to be reused, a new connection will be opened if the CURLMOPT_MAX_xxx_CONNECTIONS limits allow it. If not, the handle will be put in a pending state until a connection is ready (either free or a pipe got shorter). CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE - A pipelined connection will not be reused if it is currently processing a transfer with a content length that is larger than this. CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE - A pipelined connection will not be reused if it is currently processing a chunk larger than this. CURLMOPT_PIPELINING_SITE_BL - A blacklist of hosts that don't allow pipelining. CURLMOPT_PIPELINING_SERVER_BL - A blacklist of server types that don't allow pipelining. See the curl_multi_setopt() man page for details.
2013-02-15 11:50:45 +01:00
lib19[0-9][0-9]
lib2033
Add tests of auth retries
2012-07-19 19:58:10 +02:00
libauthretry
NTLM: verify multiple connections work Add test2032 to test that NTLM does not switch connections in the middle of the handshake
2012-08-09 00:15:04 +02:00
libntlmconnect
Reference in New Issue
Copy Permalink