Re: [PATCH] always multi v5

2013-01-10 Thread Yang Tse
Attached file logs_7_tests.tar.gz has test traces for test cases 64, 69, 90, 153, 160, 1079 and 1095. These http tests have in common that http test server is instructed to close connection with 'swsclose', while test case is doing more than one request. Above seven tests needed kiil -9 to stop

#include setup.h in libtest

2013-01-10 Thread Gisle Vanem
Yang, I think you forgot about patching tests/libtest. Some files under tests\libtest, includes setup.h. (e.g. in chkhostname.c). Shouldn't that be '#include curl_setup.h'? --gv --- List admin:

[Patch] packages/DOS/common.dj

2013-01-10 Thread Gisle Vanem
gcc on DOS hasn't really supported COFF-debug (-gcoff) on djgpp for a long time. Eli Zaretskii wrote in: http://newsgroups.derkeiler.com/Archive/Comp/comp.os.msdos.djgpp/2012-01/msg00070.html Sounds like the COFF debug info generation has bit-rotted in GCC. Nothing new here, no other platform

Re: USE_ARES in config-win32.h

2013-01-10 Thread Yang Tse
Hi Gisle, On Thu, Jan 10, Gisle Vanem wrote: lib/Makefile.m32 has this: ifdef ARES INCLUDES += -I$(LIBCARES_PATH) CFLAGS += -DUSE_ARES Yes that's a problem with makefiles which don't write a curl_config.h file and expect to fully control build behavior even when a config-platform.h

Re: [Patch] packages/DOS/common.dj

2013-01-10 Thread Yang Tse
On Thu, Jan 10, 2013 Gisle Vanem wrote: gcc on DOS hasn't really supported COFF-debug (-gcoff) on djgpp for a long time. Eli Zaretskii wrote in: [...] So lets drop it too: Pushed. https://github.com/bagder/curl/commit/b35a176c Thanks, -- -=[Yang]=-

Re: [PATCH] always multi v5

2013-01-10 Thread Yang Tse
Daniel, Some tests I've done... Forced libcurl to build using select() instead of poll() to rule out any problem in that area. No joy, exhibits same behavior. Used http test server sws.c rolled back to commit d759a70d and also back to commit 4d3fb91f. But it exhibits same behavior. And, given

Re: [PATCH] always multi v5

2013-01-10 Thread Daniel Stenberg
On Thu, 10 Jan 2013, Yang Tse wrote: Attached file logs_7_tests.tar.gz has test traces for test cases 64, 69, 90, 153, 160, 1079 and 1095. These http tests have in common that http test server is instructed to close connection with 'swsclose', while test case is doing more than one request.

Re: [PATCH] always multi v5

2013-01-10 Thread Yang Tse
On Thu, Jan 10, Daniel Stenberg wrote: Lets focus on the single test 64 first. What's the exact test target/OS/version etc you're using to trigger this? Does it fail on all runs? cygwin 1.5.25 on w2k. Yes it fails in all runs. Also, can you show us the log/http_server.log after a run where

Find wrong certificate domain

2013-01-10 Thread Volker Schmid
Hello, I'm using libcurl to send SMTP emails. I also set CURLOPT_SSL_VERIFYPEER and CURLOPT_SSL_VERIFYHOST to check the certificate. Some customers are getting an error because the SSL certificate does not match the domain name of the smtp server. I now like to show them the domain name of

Prevent curl to trigger progressbar on 302 redirections

2013-01-10 Thread Alexandre Filgueira
Hi all I'm curious about this. The thing is that I'm using a redirector on my server (using Mirrorbrain) and when curl download a file from there it trigger the progressbar twice, downloading just bytes (I assume that it is the redirection) in the first one, and the proper file in the second one.