From 712f9be425e6704aa42e7bb1b3c5d7cb77b672c5 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sun, 13 Apr 2008 08:40:24 +0000 Subject: [PATCH] fix --- src/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 index ebd2ff36..d8aaa963 100644 --- 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, ©Buffer); curl_easy_setopt (c, CURLOPT_WRITEDATA, &cbc); curl_easy_setopt (c, CURLOPT_FAILONERROR, 1);