From: Daniel Stenberg Date: Mon, 7 Nov 2016 09:36:23 +0000 (+0100) Subject: s/cURL/curl X-Git-Tag: curl-7_52_0~154 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27302abb9467f21a481fcc6b8eca53d34e04373b;p=thirdparty%2Fcurl.git s/cURL/curl We're mostly saying just "curl" in lower case these days so here's a big cleanup to adapt to this reality. A few instances are left as the project could still formally be considered called cURL. --- diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 186025b7db..bce89b4442 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -20,4 +20,4 @@ Send your suggestions using one of these methods: 3. as an [issue](https://github.com/curl/curl/issues) -/ The cURL team! +/ The curl team! diff --git a/docs/HISTORY.md b/docs/HISTORY.md index 76c887f8b8..ac93b674e5 100644 --- a/docs/HISTORY.md +++ b/docs/HISTORY.md @@ -1,4 +1,4 @@ -How cURL Became Like This +How curl Became Like This ========================= Towards the end of 1996, Daniel Stenberg was spending time writing an IRC bot diff --git a/docs/TODO b/docs/TODO index af800c3b87..c3bc4eb552 100644 --- a/docs/TODO +++ b/docs/TODO @@ -6,7 +6,7 @@ Things that could be nice to do in the future - Things to do in project cURL. Please tell us what you think, contribute and + Things to do in project curl. Please tell us what you think, contribute and send us patches that improve things! Be aware that these are things that we could do, or have once been considered diff --git a/docs/TheArtOfHttpScripting b/docs/TheArtOfHttpScripting index 047db809b7..0e81d1a307 100644 --- a/docs/TheArtOfHttpScripting +++ b/docs/TheArtOfHttpScripting @@ -755,4 +755,4 @@ The Art Of Scripting HTTP Requests Using Curl 14.2 Sites - https://curl.haxx.se is the home of the cURL project + https://curl.haxx.se is the home of the curl project diff --git a/docs/examples/Makefile.netware b/docs/examples/Makefile.netware index 2d85e736a9..9fe9db4531 100644 --- a/docs/examples/Makefile.netware +++ b/docs/examples/Makefile.netware @@ -60,7 +60,7 @@ endif TARGET = examples VERSION = $(LIBCURL_VERSION) COPYR = Copyright (C) $(LIBCURL_COPYRIGHT_STR) -DESCR = cURL ($(LIBARCH)) +DESCR = curl ($(LIBARCH)) MTSAFE = YES STACK = 8192 SCREEN = Example Program diff --git a/docs/examples/multi-uv.c b/docs/examples/multi-uv.c index 358200ec2e..c0228945dc 100644 --- a/docs/examples/multi-uv.c +++ b/docs/examples/multi-uv.c @@ -210,7 +210,7 @@ int main(int argc, char **argv) return 0; if(curl_global_init(CURL_GLOBAL_ALL)) { - fprintf(stderr, "Could not init cURL\n"); + fprintf(stderr, "Could not init curl\n"); return 1; } diff --git a/docs/examples/rtsp.c b/docs/examples/rtsp.c index 63c46e1512..bdab395428 100644 --- a/docs/examples/rtsp.c +++ b/docs/examples/rtsp.c @@ -188,7 +188,7 @@ int main(int argc, char * const argv[]) printf("\nRTSP request %s\n", VERSION_STR); printf(" Project web site: http://code.google.com/p/rtsprequest/\n"); - printf(" Requires cURL V7.20 or greater\n\n"); + printf(" Requires curl V7.20 or greater\n\n"); /* check command line */ if((argc != 2) && (argc != 3)) { @@ -226,7 +226,7 @@ int main(int argc, char * const argv[]) if(res == CURLE_OK) { curl_version_info_data *data = curl_version_info(CURLVERSION_NOW); CURL *curl; - fprintf(stderr, " cURL V%s loaded\n", data->version); + fprintf(stderr, " curl V%s loaded\n", data->version); /* initialize this curl session */ curl = curl_easy_init(); diff --git a/docs/examples/sessioninfo.c b/docs/examples/sessioninfo.c index 11c87cd1b1..024a0e12da 100644 --- a/docs/examples/sessioninfo.c +++ b/docs/examples/sessioninfo.c @@ -24,7 +24,7 @@ * */ -/* Note that this example currently requires cURL to be linked against +/* Note that this example currently requires curl to be linked against GnuTLS (and this program must also be linked against -lgnutls). */ #include diff --git a/include/README b/include/README index 3e52a1d0a6..6eb73b2b74 100644 --- a/include/README +++ b/include/README @@ -37,7 +37,7 @@ The following notes apply to libcurl version 7.19.0 and later. also distribute along with it the generated curl/curlbuild.h which has been used to compile it. Otherwise the library will be of no use for the users of the library that you have built. It is _your_ responsibility to provide this - file. No one at the cURL project can know how you have built the library. + file. No one at the curl project can know how you have built the library. * File curl/curlbuild.h includes platform and configuration dependent info, and must not be modified by anyone. Configure script generates it for you. diff --git a/lib/Makefile.netware b/lib/Makefile.netware index ee7e87ce78..f689a36f80 100644 --- a/lib/Makefile.netware +++ b/lib/Makefile.netware @@ -87,7 +87,7 @@ endif TARGET = libcurl VERSION = $(LIBCURL_VERSION) COPYR = Copyright (C) $(LIBCURL_COPYRIGHT_STR) -DESCR = cURL libcurl $(LIBCURL_VERSION_STR) ($(LIBARCH)) - https://curl.haxx.se +DESCR = curl libcurl $(LIBCURL_VERSION_STR) ($(LIBARCH)) - https://curl.haxx.se MTSAFE = YES STACK = 64000 SCREEN = none diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index c040928a18..24d9d42c19 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -571,7 +571,7 @@ int cert_stuff(struct connectdata *conn, EVP_PKEY *priv_key = NULL; if(data->state.engine) { UI_METHOD *ui_method = - UI_create_method((char *)"cURL user interface"); + UI_create_method((char *)"curl user interface"); if(!ui_method) { failf(data, "unable do create " OSSL_PACKAGE " user-interface method"); diff --git a/m4/curl-compilers.m4 b/m4/curl-compilers.m4 index 6ecd3237b3..3219baf6bf 100644 --- a/m4/curl-compilers.m4 +++ b/m4/curl-compilers.m4 @@ -64,7 +64,7 @@ AC_DEFUN([CURL_CHECK_COMPILER], [ *** *** Whatever settings are present in CFLAGS will be used for this run. *** -*** If you wish to help the cURL project to better support your compiler +*** If you wish to help the curl project to better support your compiler *** you can report this and the required info on the libcurl development *** mailing list: https://cool.haxx.se/mailman/listinfo/curl-library/ *** diff --git a/packages/AIX/RPM/README b/packages/AIX/RPM/README index 790beb80e8..51615ad4c1 100644 --- a/packages/AIX/RPM/README +++ b/packages/AIX/RPM/README @@ -29,5 +29,5 @@ Default is to build with ssl support. Lastly, the spec file expects the Curl source distribution file to be in .tar.bz2 format. -The nifty cURL header of this README is a ripoff of the vms/readme file. +The nifty curl header of this README is a ripoff of the vms/readme file. diff --git a/packages/DOS/common.dj b/packages/DOS/common.dj index 85b611c49d..e069ce68a2 100644 --- a/packages/DOS/common.dj +++ b/packages/DOS/common.dj @@ -1,7 +1,7 @@ # # Common defines for curl (djgpp/Watt-32) # -# Assumes you've unpacked cURL with long-file names +# Assumes you've unpacked curl with long-file names # I.e use "set LFN=y" before untaring on Win9x/XP. # Requires sed, yacc, rm and the usual stuff. # diff --git a/packages/Symbian/group/curl.mmp b/packages/Symbian/group/curl.mmp index b3d4d1c045..4b304a3d9f 100644 --- a/packages/Symbian/group/curl.mmp +++ b/packages/Symbian/group/curl.mmp @@ -1,5 +1,5 @@ // -// cURL network retrieval client +// curl network retrieval client // TARGET curl.exe diff --git a/packages/Symbian/group/libcurl.mmp b/packages/Symbian/group/libcurl.mmp index c52fe42588..6388bbd73e 100644 --- a/packages/Symbian/group/libcurl.mmp +++ b/packages/Symbian/group/libcurl.mmp @@ -1,5 +1,5 @@ // -// libcurl.dll cURL network retrieval client library +// libcurl.dll curl network retrieval client library // // Build-time options (uncomment these to enable) diff --git a/packages/Win32/cygwin/README b/packages/Win32/cygwin/README index a0811de760..60bb5e10da 100644 --- a/packages/Win32/cygwin/README +++ b/packages/Win32/cygwin/README @@ -12,7 +12,7 @@ Dependencies: - Cygwin - OpenSSL 0.9.6b-2+ (*) - (*) cURL can be built without SSL support, see below for details + (*) curl can be built without SSL support, see below for details Canonical Homepage and Downloads: @@ -41,7 +41,7 @@ Build Instructions (to recompile from the cygwin source tarball): (**) LibTool 1.4.2 had a bug related to cygwin's use of ".exe" extensions, such that "make install" blew up at curl.exe. See this URL for details: http://mail.gnu.org/pipermail/libtool/2001-September/005549.html - The copy of ltmain.sh that is distributed with cURL includes this patch. + The copy of ltmain.sh that is distributed with curl includes this patch. As of curl 7.9.1, the official source compiles (under Cygwin) and tests 100% cleanly OOTB (Out Of The Box) @@ -100,9 +100,9 @@ Packaging Instructions: requires: cygwin openssl @ curl-devel - sdesc: "(lib)cURL headers, static libraries, developer docs and samples" + sdesc: "(lib)curl headers, static libraries, developer docs and samples" ldesc: "curl-devel is the developer-oriented (non-run-time) parts - of the cURL package. It includes header files, static libraries, + of the curl package. It includes header files, static libraries, example source code snippets, and the libcurl man pages." category: Web Libs Devel requires: cygwin openssl curl @@ -110,5 +110,5 @@ Packaging Instructions: Cygwin port maintained by: Kevin Roth - Questions about cURL should be directed to curl-users@cool.haxx.se. + Questions about curl should be directed to curl-users@cool.haxx.se. Questions about this cygwin package go to cygwin@cygwin.com. diff --git a/packages/vms/readme b/packages/vms/readme index 1b24580536..5f116a554a 100644 --- a/packages/vms/readme +++ b/packages/vms/readme @@ -83,13 +83,13 @@ curl_startup.com A procedure run at VMS startup to install the libcurl shared image and to set up the needed logical names. -curlmsg.h C header defining cURL status code macros. +curlmsg.h C header defining curl status code macros. curlmsg.msg Error message source for curlmsg.h and curlmsg.sdl. -curlmsg.sdl SDL source defining cURL status code constants. +curlmsg.sdl SDL source defining curl status code constants. -curlmsg_vms.h Mapping of cURL status codes to VMS-form codes. +curlmsg_vms.h Mapping of curl status codes to VMS-form codes. generate_config_vms_h_curl.com DCL procedure to generate the curl specific @@ -115,9 +115,9 @@ gnv_link_curl.com Links the libcurl shared image and then links a curl macro32_exactcase.patch The patch file needed to modify VAX Macro32 to be case sensitive and case preserving. -Makefile.am cURL kit file list for this directory. +Makefile.am curl kit file list for this directory. -Makefile.in cURL kit makefile source for this directory. +Makefile.in curl kit makefile source for this directory. make_gnv_curl_install.sh Script to do a make install using GNV after running diff --git a/packages/vms/vms_eco_level.h b/packages/vms/vms_eco_level.h index 4353407758..354875bbb9 100644 --- a/packages/vms/vms_eco_level.h +++ b/packages/vms/vms_eco_level.h @@ -19,7 +19,7 @@ */ /* This file should be incremented for each ECO that is kit */ -/* for a specific cURL x.y-z release. */ +/* for a specific curl x.y-z release. */ /* When any part of x.y-z is incremented, the ECO should be set back to 0 */ #ifndef _VMS_ECO_LEVEL_H diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index cfcefb3962..9bbeb6054d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -49,9 +49,9 @@ add_executable( ${CURL_FILES} ) -source_group("cURLX source files" FILES ${CURLX_CFILES}) -source_group("cURL source files" FILES ${CURL_CFILES}) -source_group("cURL header files" FILES ${CURL_HFILES}) +source_group("curlX source files" FILES ${CURLX_CFILES}) +source_group("curl source files" FILES ${CURL_CFILES}) +source_group("curl header files" FILES ${CURL_HFILES}) include_directories( ${CURL_SOURCE_DIR}/lib # To be able to reach "curl_setup_once.h" @@ -61,7 +61,7 @@ include_directories( ${CURL_SOURCE_DIR}/src # To be able to reach "tool_hugehelp.h" ) -#Build cURL executable +#Build curl executable target_link_libraries( ${EXE_NAME} libcurl ${CURL_LIBS}) ################################################################################ diff --git a/src/Makefile.Watcom b/src/Makefile.Watcom index f1ddc29fae..25cd3bf880 100644 --- a/src/Makefile.Watcom +++ b/src/Makefile.Watcom @@ -22,7 +22,7 @@ #*************************************************************************** # -# Watcom / OpenWatcom / Win32 makefile for cURL. +# Watcom / OpenWatcom / Win32 makefile for curl. # .ERASE @@ -156,7 +156,7 @@ RESOURCE = $(OBJ_DIR)/curl.res DIRS = $(OBJ_DIR) all: tool_hugehelp.c $(DIRS) $(TARGETS) .SYMBOLIC - @echo Welcome to cURL + @echo Welcome to curl clean: .SYMBOLIC -rm -f $(OBJS) diff --git a/src/Makefile.netware b/src/Makefile.netware index 3e4f6546d9..a927da592a 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -102,7 +102,7 @@ endif TARGET = curl VERSION = $(LIBCURL_VERSION) COPYR = Copyright (C) $(LIBCURL_COPYRIGHT_STR) -DESCR = cURL $(LIBCURL_VERSION_STR) ($(LIBARCH)) - https://curl.haxx.se +DESCR = curl $(LIBCURL_VERSION_STR) ($(LIBARCH)) - https://curl.haxx.se MTSAFE = YES STACK = 64000 SCREEN = $(TARGET) commandline utility diff --git a/src/macos/MACINSTALL.TXT b/src/macos/MACINSTALL.TXT index 1839ef205c..ce4d1dce41 100644 --- a/src/macos/MACINSTALL.TXT +++ b/src/macos/MACINSTALL.TXT @@ -1 +1 @@ -MACOS (not MACOS X) =================== This is the first attempt at porting cURL to MacOS. http, ftp, dict and telnet seems to work fine, other protocols and advanced features have not been all tested. This port is heavily based on the GUSI library from Matthias Neeracher. GUSI (Grand Unified Socket Interface) is a POSIX/Pthreads/Sockets library bringing some of the comforts of UNIX 98 to traditional MacOS. The latest GUSI release can be downloaded from sourceforge at I have also written a few functions to help port Unix applications to MacOS. These functions are part of the GUSI Extra library that can be downloaded at OpenSSL support is still experimental but I hope to deliver a version including SSL soon. cURL for MacOS requires using the CodeWarrior compiler from Metrowerks. First download GUSI, GUSI Extra and cURL. Access paths have been setup so that GUSI, GUSI Extra and cURL directories should have the same parent directory. Follow the instructions in GUSI Extra "readme.txt" mainly the ones related to SIOUX and GUSI patches. If you do not apply these patches curl will not behave correctly. In the 'curl/src/macos' directory, decode "curl.mcp.xml.sit.hqx" (This is a stuffit binhexed file) From the CodeWarrior IDE, import 'curl/src/macos/curl.xml', adjust the access paths if required. Then you should be able to build: - the libcurl libraries for PPC and 68K. - the curl application (also available for PPC and 68K) which is the command line version of cURL. If the file "tool_hugehelp.c" is missing rename "curl/src/tool_hugehelp.c.cvs" to "tool_hugehelp.c" and make sure its file type is 'TEXT' +MACOS (not MACOS X) =================== This is the first attempt at porting curl to MacOS. http, ftp, dict and telnet seems to work fine, other protocols and advanced features have not been all tested. This port is heavily based on the GUSI library from Matthias Neeracher. GUSI (Grand Unified Socket Interface) is a POSIX/Pthreads/Sockets library bringing some of the comforts of UNIX 98 to traditional MacOS. The latest GUSI release can be downloaded from sourceforge at I have also written a few functions to help port Unix applications to MacOS. These functions are part of the GUSI Extra library that can be downloaded at OpenSSL support is still experimental but I hope to deliver a version including SSL soon. curl for MacOS requires using the CodeWarrior compiler from Metrowerks. First download GUSI, GUSI Extra and curl. Access paths have been setup so that GUSI, GUSI Extra and curl directories should have the same parent directory. Follow the instructions in GUSI Extra "readme.txt" mainly the ones related to SIOUX and GUSI patches. If you do not apply these patches curl will not behave correctly. In the 'curl/src/macos' directory, decode "curl.mcp.xml.sit.hqx" (This is a stuffit binhexed file) From the CodeWarrior IDE, import 'curl/src/macos/curl.xml', adjust the access paths if required. Then you should be able to build: - the libcurl libraries for PPC and 68K. - the curl application (also available for PPC and 68K) which is the command line version of curl. If the file "tool_hugehelp.c" is missing rename "curl/src/tool_hugehelp.c.cvs" to "tool_hugehelp.c" and make sure its file type is 'TEXT' diff --git a/src/makefile.amiga b/src/makefile.amiga index 25449a6dca..9f3748b1aa 100644 --- a/src/makefile.amiga +++ b/src/makefile.amiga @@ -1,5 +1,5 @@ # -# $VER: cURL Makefile for AmigaOS ... +# $VER: curl Makefile for AmigaOS ... # # change the follow to where you have the AmiTCP SDK v4.3 includes: @@ -19,12 +19,12 @@ include Makefile.inc OBJS = $(CURL_CFILES:.c=.o) $(CURLX_CFILES:.c=.o) all: tool_hugehelp.c $(OBJS) - $(CC) $(CFLAGS) -o cURL $(OBJS) $(LIBS) -Wl,-Map,cURL.map,--cref + $(CC) $(CFLAGS) -o curl $(OBJS) $(LIBS) -Wl,-Map,curl.map,--cref tool_hugehelp.c: $(README) $(MANPAGE) mkhelp.pl rm -f tool_hugehelp.c /bin/nroff -man $(MANPAGE) | /bin/perl $(MKHELP) -c $(README) > tool_hugehelp.c install: - $(INSTALL) -c cURL /c/cURL + $(INSTALL) -c curl /c/curl diff --git a/src/makefile.dj b/src/makefile.dj index 6a6c8f95fa..c3bbc237fc 100644 --- a/src/makefile.dj +++ b/src/makefile.dj @@ -59,7 +59,7 @@ PROGRAM = curl.exe OBJECTS += $(addprefix $(OBJ_DIR)/, $(CSOURCES:.c=.o)) all: $(OBJ_DIR) $(PROGRAM) - @echo Welcome to cURL + @echo Welcome to curl $(PROGRAM): $(OBJECTS) ../lib/libcurl.a $(CC) -o $@ $^ $(LDFLAGS) $(EX_LIBS) diff --git a/tests/README b/tests/README index 6409c107be..8f52688c06 100644 --- a/tests/README +++ b/tests/README @@ -4,7 +4,7 @@ | (__| |_| | _ <| |___ \___|\___/|_| \_\_____| -The cURL Test Suite +The curl Test Suite 1. Running 1.1 Requires to run diff --git a/tests/data/test864 b/tests/data/test864 index 9ad98f7eee..ebdebd671d 100644 --- a/tests/data/test864 +++ b/tests/data/test864 @@ -11,7 +11,7 @@ APOP CAPA APOP -REPLY welcome +OK cURL POP3 server ready to serve <1972.987654321\@curl> +REPLY welcome +OK curl POP3 server ready to serve <1972.987654321\@curl> From: me@somewhere diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl index 01a7df865b..081298f1b0 100755 --- a/tests/ftpserver.pl +++ b/tests/ftpserver.pl @@ -609,7 +609,7 @@ sub protocolsetup { ' / __| | | | |_) | | '."\r\n", ' | (__| |_| | _ {| |___ '."\r\n", ' \___|\___/|_| \_\_____|'."\r\n", - '+OK cURL POP3 server ready to serve '."\r\n") + '+OK curl POP3 server ready to serve '."\r\n") ); } elsif($proto eq 'imap') { @@ -643,7 +643,7 @@ sub protocolsetup { ' / __| | | | |_) | | '."\r\n", ' | (__| |_| | _ {| |___ '."\r\n", ' \___|\___/|_| \_\_____|'."\r\n", - '* OK cURL IMAP server ready to serve'."\r\n") + '* OK curl IMAP server ready to serve'."\r\n") ); } elsif($proto eq 'smtp') { @@ -1057,7 +1057,7 @@ sub EXPN_smtp { } sub QUIT_smtp { - sendcontrol "221 cURL $smtp_type server signing off\r\n"; + sendcontrol "221 curl $smtp_type server signing off\r\n"; return 0; } @@ -1605,7 +1605,7 @@ sub NOOP_imap { } sub LOGOUT_imap { - sendcontrol "* BYE cURL IMAP server signing off\r\n"; + sendcontrol "* BYE curl IMAP server signing off\r\n"; sendcontrol "$cmdid OK LOGOUT completed\r\n"; return 0; @@ -1941,7 +1941,7 @@ sub QUIT_pop3 { @deleted = (); } - sendcontrol "+OK cURL POP3 server signing off\r\n"; + sendcontrol "+OK curl POP3 server signing off\r\n"; return 0; } diff --git a/tests/libtest/lib539.c b/tests/libtest/lib539.c index 9f0f8fabf3..ec4ea530eb 100644 --- a/tests/libtest/lib539.c +++ b/tests/libtest/lib539.c @@ -42,7 +42,7 @@ int test(char *URL) } /* - * Begin with cURL set to use a single CWD to the URL's directory. + * Begin with curl set to use a single CWD to the URL's directory. */ test_setopt(curl, CURLOPT_URL, URL); test_setopt(curl, CURLOPT_VERBOSE, 1L); @@ -53,7 +53,7 @@ int test(char *URL) /* * Change the FTP_FILEMETHOD option to use full paths rather than a CWD * command. Alter the URL's path a bit, appending a "./". Use an innocuous - * QUOTE command, after which cURL will CWD to ftp_conn->entrypath and then + * QUOTE command, after which curl will CWD to ftp_conn->entrypath and then * (on the next call to ftp_statemach_act) find a non-zero ftpconn->dirdepth * even though no directories are stored in the ftpconn->dirs array (after a * call to freedirs). diff --git a/tests/pathhelp.pm b/tests/pathhelp.pm index 391ef6c255..10a87aaf99 100644 --- a/tests/pathhelp.pm +++ b/tests/pathhelp.pm @@ -20,7 +20,7 @@ # ########################################################################### -# This Perl package helps with path transforming when running cURL tests on +# This Perl package helps with path transforming when running curl tests on # Win32 platform with Msys or Cygwin. # Three main functions 'sys_native_abs_path', 'sys_native_path' and # 'build_sys_abs_path' autodetect format of given pathnames. Following formats diff --git a/tests/server/rtspd.c b/tests/server/rtspd.c index db95917a93..e759e8800a 100644 --- a/tests/server/rtspd.c +++ b/tests/server/rtspd.c @@ -129,7 +129,7 @@ static void storerequest(char *reqbuf, size_t totalsize); const char *serverlogfile = DEFAULT_LOGFILE; -#define RTSPDVERSION "cURL test suite RTSP server/0.1" +#define RTSPDVERSION "curl test suite RTSP server/0.1" #define REQUEST_DUMP "log/server.input" #define RESPONSE_DUMP "log/server.response" diff --git a/tests/server/sws.c b/tests/server/sws.c index c94e23453d..8ebce4e7b7 100644 --- a/tests/server/sws.c +++ b/tests/server/sws.c @@ -140,7 +140,7 @@ static void storerequest(char *reqbuf, size_t totalsize); const char *serverlogfile = DEFAULT_LOGFILE; -#define SWSVERSION "cURL test suite HTTP server/0.1" +#define SWSVERSION "curl test suite HTTP server/0.1" #define REQUEST_DUMP "log/server.input" #define RESPONSE_DUMP "log/server.response"