libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 712f9be425e6704aa42e7bb1b3c5d7cb77b672c5
parent e7544a57bf3ae3c0081e00b202906a4531c7f603
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 13 Apr 2008 08:40:24 +0000

fix

Diffstat:
Msrc/testzzuf/daemontest_long_header.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/testzzuf/daemontest_long_header.c b/src/testzzuf/daemontest_long_header.c @@ -163,7 +163,7 @@ testLongHeaderGet () cbc.size = 2048; cbc.pos = 0; d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY /* | MHD_USE_DEBUG */ , - 1080, + 11080, &apc_all, NULL, &ahc_echo, @@ -185,7 +185,7 @@ testLongHeaderGet () header = curl_slist_append (header, url); curl_easy_setopt (c, CURLOPT_HTTPHEADER, header); - curl_easy_setopt (c, CURLOPT_URL, "http://localhost:1080/hello_world"); + curl_easy_setopt (c, CURLOPT_URL, "http://localhost:11081/hello_world"); curl_easy_setopt (c, CURLOPT_WRITEFUNCTION, &copyBuffer); curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); curl_easy_setopt (c, CURLOPT_FAILONERROR, 1);