From: Steve Holme Date: Fri, 26 Dec 2014 20:45:21 +0000 (+0000) Subject: code/docs: Use Unix rather than UNIX to avoid use of the trademark X-Git-Tag: curl-7_40_0~85 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1abe65d928440b3b23d25746b966dd4169c358b9;p=thirdparty%2Fcurl.git code/docs: Use Unix rather than UNIX to avoid use of the trademark Use Unix when generically writing about Unix based systems as UNIX is the trademark and should only be used in a particular product's name. --- diff --git a/CHANGES.0 b/CHANGES.0 index 3dc8185cb9..2975f73114 100644 --- a/CHANGES.0 +++ b/CHANGES.0 @@ -17598,7 +17598,7 @@ Version 4.8.4 - As Julian Romero Nieto reported, curl reported wrong version number. - As Teemu Yli-Elsila pointed out, the win32 version of 4.8 (and probably all other versions for win32) didn't work with binary files since I'm too used - to the UNIX style fopen() where binary and text don't differ... + to the Unix style fopen() where binary and text don't differ... - Ralph Beckmann brought me some changes that lets curl compile error and warning free with -Wall -pedantic with g++. I also took the opportunity to clean off some unused variables and similar. diff --git a/CMakeLists.txt b/CMakeLists.txt index d6abaab772..fc75d59deb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -527,7 +527,7 @@ if(CMAKE_USE_GSSAPI) endif() endif() -option(ENABLE_UNIX_SOCKETS "Define if you want UNIX domain sockets support" ON) +option(ENABLE_UNIX_SOCKETS "Define if you want Unix domain sockets support" ON) if(ENABLE_UNIX_SOCKETS) include(CheckStructHasMember) check_struct_has_member("struct sockaddr_un" sun_path "sys/un.h" USE_UNIX_SOCKETS) diff --git a/configure.ac b/configure.ac index 100d9c5b66..95068c79d2 100644 --- a/configure.ac +++ b/configure.ac @@ -3275,12 +3275,12 @@ if test "$want_tls_srp" = "yes" && ( test "x$HAVE_GNUTLS_SRP" = "x1" || test "x$ fi dnl ************************************************************ -dnl disable UNIX domain sockets support +dnl disable Unix domain sockets support dnl -AC_MSG_CHECKING([whether to enable UNIX domain sockets]) +AC_MSG_CHECKING([whether to enable Unix domain sockets]) AC_ARG_ENABLE(unix-sockets, -AC_HELP_STRING([--enable-unix-sockets],[Enable UNIX domain sockets]) -AC_HELP_STRING([--disable-unix-sockets],[Disable UNIX domain sockets]), +AC_HELP_STRING([--enable-unix-sockets],[Enable Unix domain sockets]) +AC_HELP_STRING([--disable-unix-sockets],[Disable Unix domain sockets]), [ case "$enableval" in no) AC_MSG_RESULT(no) want_unix_sockets=no @@ -3295,7 +3295,7 @@ AC_HELP_STRING([--disable-unix-sockets],[Disable UNIX domain sockets]), ) if test "x$want_unix_sockets" != "xno"; then AC_CHECK_MEMBER([struct sockaddr_un.sun_path], [ - AC_DEFINE(USE_UNIX_SOCKETS, 1, [Use UNIX domain sockets]) + AC_DEFINE(USE_UNIX_SOCKETS, 1, [Use Unix domain sockets]) AC_SUBST(USE_UNIX_SOCKETS, [1]) curl_unix_sockets_msg="enabled" ], [ @@ -3391,7 +3391,7 @@ if test "x$IPV6_ENABLED" = "x1"; then SUPPORT_FEATURES="$SUPPORT_FEATURES IPv6" fi if test "x$USE_UNIX_SOCKETS" = "x1"; then - SUPPORT_FEATURES="$SUPPORT_FEATURES UNIX-Sockets" + SUPPORT_FEATURES="$SUPPORT_FEATURES UnixSockets" fi if test "x$HAVE_LIBZ" = "x1"; then SUPPORT_FEATURES="$SUPPORT_FEATURES libz" @@ -3601,7 +3601,7 @@ AC_MSG_NOTICE([Configured to build curl/libcurl: TLS-SRP support: ${curl_tls_srp_msg} resolver: ${curl_res_msg} ipv6 support: ${curl_ipv6_msg} - UNIX sockets support: ${curl_unix_sockets_msg} + Unix sockets support: ${curl_unix_sockets_msg} IDN support: ${curl_idn_msg} Build libcurl: Shared=${enable_shared}, Static=${enable_static} Built-in manual: ${curl_manual_msg} diff --git a/docs/INSTALL b/docs/INSTALL index 48c2e6c1f9..30dec53432 100644 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -20,10 +20,10 @@ Building from git If you get your code off a git repository, see the GIT-INFO file in the root directory for specific instructions on how to proceed. -UNIX +Unix ==== - A normal unix installation is made in three or four steps (after you've + A normal Unix installation is made in three or four steps (after you've unpacked the source archive): ./configure diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS index 0a6646152b..7788567736 100644 --- a/docs/KNOWN_BUGS +++ b/docs/KNOWN_BUGS @@ -200,7 +200,7 @@ may have been fixed since this was written! be to use a data structure other than a plain C string, one that can handle embedded NUL characters. From a practical standpoint, most FTP servers would not meaningfully support NUL characters within RFC 959 , - anyway (e.g., UNIX pathnames may not contain NUL). + anyway (e.g., Unix pathnames may not contain NUL). 14. Test case 165 might fail on a system which has libidn present, but with an old iconv version (2.1.3 is a known bad version), since it doesn't recognize diff --git a/docs/curl.1 b/docs/curl.1 index 1f5389a6ba..0b9971cd24 100644 --- a/docs/curl.1 +++ b/docs/curl.1 @@ -813,12 +813,12 @@ the following places in this order: 1) curl tries to find the "home dir": It first checks for the CURL_HOME and then the HOME environment variables. Failing that, it uses getpwuid() on -UNIX-like systems (which returns the home dir given the current user in your +Unix-like systems (which returns the home dir given the current user in your system). On Windows, it then checks for the APPDATA variable, or as a last resort the '%USERPROFILE%\\Application Data'. 2) On windows, if there is no _curlrc file in the home dir, it checks for one -in the same dir the curl executable is placed. On UNIX-like systems, it will +in the same dir the curl executable is placed. On Unix-like systems, it will simply try to load .curlrc from the determined home dir. .nf @@ -1026,7 +1026,7 @@ in Metalink file, hash check will fail. .IP "-n, --netrc" Makes curl scan the \fI.netrc\fP (\fI_netrc\fP on Windows) file in the user's home directory for login name and password. This is typically used for FTP on -UNIX. If used with HTTP, curl will enable user authentication. See +Unix. If used with HTTP, curl will enable user authentication. See .BR netrc(4) or .BR ftp(1) @@ -1663,7 +1663,7 @@ If this option is used several times, the last one will be used. Prepends a time stamp to each trace or verbose line that curl displays. (Added in 7.14.0) .IP "--unix-socket " -(HTTP) Connect through this UNIX domain socket, instead of using the +(HTTP) Connect through this Unix domain socket, instead of using the network. (Added in 7.40.0) .IP "-u, --user " Specify the user name and password to use for server authentication. Overrides diff --git a/docs/examples/externalsocket.c b/docs/examples/externalsocket.c index 1b326c8b29..5486d12558 100644 --- a/docs/examples/externalsocket.c +++ b/docs/examples/externalsocket.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2012, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2014, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -38,7 +38,7 @@ #include /* socket definitions */ #include #include /* inet (3) funtions */ -#include /* misc. UNIX functions */ +#include /* misc. Unix functions */ #endif #include diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index 71f681b701..ecfa38f39e 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -188,7 +188,7 @@ Idle time before sending keep-alive. See \fICURLOPT_TCP_KEEPIDLE(3)\fP .IP CURLOPT_TCP_KEEPINTVL Interval between keep-alive probes. See \fICURLOPT_TCP_KEEPINTVL(3)\fP .IP CURLOPT_UNIX_SOCKET_PATH -Path to a UNIX domain socket. See \fICURLOPT_UNIX_SOCKET_PATH(3)\fP +Path to a Unix domain socket. See \fICURLOPT_UNIX_SOCKET_PATH(3)\fP .SH NAMES and PASSWORDS OPTIONS (Authentication) .IP CURLOPT_NETRC Enable .netrc parsing. See \fICURLOPT_NETRC(3)\fP diff --git a/docs/libcurl/curl_version_info.3 b/docs/libcurl/curl_version_info.3 index 6e553463ed..1b8f9c1194 100644 --- a/docs/libcurl/curl_version_info.3 +++ b/docs/libcurl/curl_version_info.3 @@ -147,7 +147,7 @@ libcurl was built with support for NTLM delegation to a winbind helper. libcurl was built with support for HTTP2. (Added in 7.33.0) .IP CURL_VERSION_UNIX_SOCKETS -libcurl was built with support for UNIX domain sockets. +libcurl was built with support for Unix domain sockets. (Added in 7.40.0) .RE \fIssl_version\fP is an ASCII string for the OpenSSL version used. If libcurl diff --git a/docs/libcurl/libcurl-tutorial.3 b/docs/libcurl/libcurl-tutorial.3 index d496e70274..11b019011a 100644 --- a/docs/libcurl/libcurl-tutorial.3 +++ b/docs/libcurl/libcurl-tutorial.3 @@ -40,7 +40,7 @@ refer to their respective man pages. .SH "Building" There are many different ways to build C programs. This chapter will assume a -UNIX-style build process. If you use a different build system, you can still +Unix style build process. If you use a different build system, you can still read this to get general information that may apply to your environment as well. .IP "Compiling the Program" @@ -412,7 +412,7 @@ similar to the \fICURLOPT_USERPWD(3)\fP option like this: curl_easy_setopt(easyhandle, CURLOPT_PROXYUSERPWD, "myname:thesecret"); -There's a long time UNIX "standard" way of storing ftp user names and +There's a long time Unix "standard" way of storing FTP user names and passwords, namely in the $HOME/.netrc file. The file should be made private so that only the user may read it (see also the "Security Considerations" chapter), as it might contain the password in plain text. libcurl has the @@ -1402,7 +1402,7 @@ This happens on Windows machines when libcurl is built and used as a DLL. However, you can still do this on Windows if you link with a static library. .IP "[3]" -The curl-config tool is generated at build-time (on UNIX-like systems) and +The curl-config tool is generated at build-time (on Unix-like systems) and should be installed with the 'make install' or similar instruction that installs the library, header files, man pages etc. .IP "[4]" diff --git a/docs/libcurl/opts/CURLOPT_UNIX_SOCKET_PATH.3 b/docs/libcurl/opts/CURLOPT_UNIX_SOCKET_PATH.3 index f656763646..a659cd2cad 100644 --- a/docs/libcurl/opts/CURLOPT_UNIX_SOCKET_PATH.3 +++ b/docs/libcurl/opts/CURLOPT_UNIX_SOCKET_PATH.3 @@ -22,18 +22,18 @@ .\" .TH CURLOPT_UNIX_SOCKET_PATH 3 "09 Oct 2014" "libcurl 7.40.0" "curl_easy_setopt options" .SH NAME -CURLOPT_UNIX_SOCKET_PATH \- set UNIX domain socket +CURLOPT_UNIX_SOCKET_PATH \- set Unix domain socket .SH SYNOPSIS #include CURLcode curl_easy_setopt(CURL *handle, CURLOPT_UNIX_SOCKET_PATH, char *path); .SH DESCRIPTION -Enables the use of UNIX domain sockets as connection endpoint and sets the path -to \fIpath\fP. If \fIpath\fP is NULL, then UNIX domain sockets are disabled. An +Enables the use of Unix domain sockets as connection endpoint and sets the path +to \fIpath\fP. If \fIpath\fP is NULL, then Unix domain sockets are disabled. An empty string will result in an error at some point, it will not disable use of -UNIX domain sockets. +Unix domain sockets. -When enabled, cURL will connect to the UNIX domain socket instead of +When enabled, cURL will connect to the Unix domain socket instead of establishing a TCP connection to a host. Since no TCP connection is created, cURL does not need to resolve the DNS hostname in the URL. @@ -45,9 +45,9 @@ Proxy and TCP options such as are not supported. Proxy options such as .BR CURLOPT_PROXY "(3) have no effect either as these are TCP-oriented, and asking a proxy server to -connect to a certain UNIX domain socket is not possible. +connect to a certain Unix domain socket is not possible. .SH DEFAULT -Default is NULL, meaning that no UNIX domain sockets are used. +Default is NULL, meaning that no Unix domain sockets are used. .SH PROTOCOLS All protocols except for file:// and FTP are supported in theory. HTTP, IMAP, POP3 and SMTP should in particular work (including their SSL/TLS variants). diff --git a/include/curl/curl.h b/include/curl/curl.h index 0915a20fa1..0562ba8103 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1619,7 +1619,7 @@ typedef enum { this option is used only if SSL_VERIFYPEER is true */ CINIT(PINNEDPUBLICKEY, OBJECTPOINT, 230), - /* Path to UNIX domain socket */ + /* Path to Unix domain socket */ CINIT(UNIX_SOCKET_PATH, OBJECTPOINT, 231), CURLOPT_LASTENTRY /* the last unused */ @@ -2269,7 +2269,7 @@ typedef struct { #define CURL_VERSION_HTTP2 (1<<16) /* HTTP2 support built-in */ #define CURL_VERSION_GSSAPI (1<<17) /* Built against a GSS-API library */ #define CURL_VERSION_KERBEROS5 (1<<18) /* Kerberos V5 auth is supported */ -#define CURL_VERSION_UNIX_SOCKETS (1<<19) /* UNIX domain sockets support */ +#define CURL_VERSION_UNIX_SOCKETS (1<<19) /* Unix domain sockets support */ /* * NAME curl_version_info() diff --git a/lib/curl_addrinfo.c b/lib/curl_addrinfo.c index f283610621..1e359d5c74 100644 --- a/lib/curl_addrinfo.c +++ b/lib/curl_addrinfo.c @@ -482,7 +482,7 @@ Curl_addrinfo *Curl_str2addr(char *address, int port) #ifdef USE_UNIX_SOCKETS /** - * Given a path to a UNIX domain socket, return a newly allocated Curl_addrinfo + * Given a path to a Unix domain socket, return a newly allocated Curl_addrinfo * struct initialized with this path. */ Curl_addrinfo *Curl_unix2addr(const char *path) diff --git a/lib/curl_config.h.cmake b/lib/curl_config.h.cmake index bd367c28de..87be9c7172 100644 --- a/lib/curl_config.h.cmake +++ b/lib/curl_config.h.cmake @@ -912,7 +912,7 @@ /* if SSL is enabled */ #cmakedefine USE_SSLEAY 1 -/* if UNIX domain sockets are enabled */ +/* if Unix domain sockets are enabled */ #cmakedefine USE_UNIX_SOCKETS /* Define to 1 if you are building a Windows target without large file diff --git a/lib/ftplistparser.c b/lib/ftplistparser.c index a6c6dea9f6..9aacad9145 100644 --- a/lib/ftplistparser.c +++ b/lib/ftplistparser.c @@ -23,13 +23,13 @@ /** * Now implemented: * - * 1) UNIX version 1 + * 1) Unix version 1 * drwxr-xr-x 1 user01 ftp 512 Jan 29 23:32 prog - * 2) UNIX version 2 + * 2) Unix version 2 * drwxr-xr-x 1 user01 ftp 512 Jan 29 1997 prog - * 3) UNIX version 3 + * 3) Unix version 3 * drwxr-xr-x 1 1 1 512 Jan 29 23:32 prog - * 4) UNIX symlink + * 4) Unix symlink * lrwxr-xr-x 1 user01 ftp 512 Jan 29 23:32 prog -> prog2000 * 5) DOS style * 01-29-97 11:32PM prog diff --git a/lib/url.c b/lib/url.c index 3d6f8fd14f..788f04849d 100644 --- a/lib/url.c +++ b/lib/url.c @@ -5089,7 +5089,7 @@ static CURLcode resolve_server(struct SessionHandle *data, #ifdef USE_UNIX_SOCKETS if(data->set.str[STRING_UNIX_SOCKET_PATH]) { - /* UNIX domain sockets are local. The host gets ignored, just use the + /* Unix domain sockets are local. The host gets ignored, just use the * specified domain socket address. Do not cache "DNS entries". There is * no DNS involved and we already have the filesystem path available */ const char *path = data->set.str[STRING_UNIX_SOCKET_PATH]; @@ -5102,7 +5102,7 @@ static CURLcode resolve_server(struct SessionHandle *data, else { /* Long paths are not supported for now */ if(strlen(path) >= sizeof(((struct sockaddr_un *)0)->sun_path)) { - failf(data, "UNIX socket path too long: '%s'", path); + failf(data, "Unix socket path too long: '%s'", path); result = CURLE_COULDNT_RESOLVE_HOST; } else @@ -5430,7 +5430,7 @@ static CURLcode create_conn(struct SessionHandle *data, #ifdef USE_UNIX_SOCKETS if(proxy && data->set.str[STRING_UNIX_SOCKET_PATH]) { - free(proxy); /* UNIX domain sockets cannot be proxied, so disable it */ + free(proxy); /* Unix domain sockets cannot be proxied, so disable it */ proxy = NULL; } #endif diff --git a/lib/urldata.h b/lib/urldata.h index 79fcd9a4dc..5f774704ae 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1420,18 +1420,18 @@ enum dupstring { STRING_SSH_KNOWNHOSTS, /* file name of knownhosts file */ #endif #if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI) - STRING_SOCKS5_GSSAPI_SERVICE, /* GSSAPI service name */ + STRING_SOCKS5_GSSAPI_SERVICE, /* GSSAPI service name */ #endif STRING_MAIL_FROM, STRING_MAIL_AUTH, #ifdef USE_TLS_SRP - STRING_TLSAUTH_USERNAME, /* TLS auth */ - STRING_TLSAUTH_PASSWORD, /* TLS auth */ + STRING_TLSAUTH_USERNAME, /* TLS auth */ + STRING_TLSAUTH_PASSWORD, /* TLS auth */ #endif - STRING_BEARER, /* , if used */ + STRING_BEARER, /* , if used */ #ifdef USE_UNIX_SOCKETS - STRING_UNIX_SOCKET_PATH, /* path to UNIX socket, if used */ + STRING_UNIX_SOCKET_PATH, /* path to Unix socket, if used */ #endif /* -- end of zero-terminated strings -- */ diff --git a/packages/DOS/common.dj b/packages/DOS/common.dj index 1b3e757e52..85b611c49d 100644 --- a/packages/DOS/common.dj +++ b/packages/DOS/common.dj @@ -13,7 +13,7 @@ MAKEFILE = Makefile.dj OBJ_DIR = djgpp # -# Find out if using a UNIX-like shell or a DOS command interpreter +# Find out if using a Unix-like shell or a DOS command interpreter # ifneq ($(findstring COMMAND.COM,$(SHELL)),COMMAND.COM) ifneq ($(findstring CMD.EXE,$(SHELL)),CMD.EXE) diff --git a/packages/EPM/README b/packages/EPM/README index 3529dbf5a1..0b031e84f8 100644 --- a/packages/EPM/README +++ b/packages/EPM/README @@ -1,4 +1,4 @@ -EPM is a free UNIX software/file packaging program that generates distribution +EPM is a free Unix software/file packaging program that generates distribution archives from a list of files. EPM Can: * Generate portable script-based distribution packages complete with diff --git a/packages/vms/config_h.com b/packages/vms/config_h.com index 6ec27ea994..2a5503f765 100644 --- a/packages/vms/config_h.com +++ b/packages/vms/config_h.com @@ -1382,7 +1382,7 @@ $! search/out 'tfile1' "$_''keyterm'" $ severity = '$severity' $ endif $! -$! UNIX compatability routines +$! Unix compatability routines $!--------------------------------------------- $ if severity .ne. 1 $ then diff --git a/packages/vms/curl_crtl_init.c b/packages/vms/curl_crtl_init.c index 98c70ec5a8..01a34e5559 100644 --- a/packages/vms/curl_crtl_init.c +++ b/packages/vms/curl_crtl_init.c @@ -232,7 +232,7 @@ static void set_features(void) /* POSIX requires that open files be able to be removed */ set_feature_default ("DECC$ALLOW_REMOVE_OPEN_FILES", ENABLE); - /* Default to outputting UNIX filesnames in VMS routines */ + /* Default to outputting Unix filenames in VMS routines */ set_feature_default ("DECC$FILENAME_UNIX_ONLY", ENABLE); /* FILENAME_UNIX_ONLY Implicitly sets */ /* decc$disable_to_vms_logname_translation */ @@ -248,7 +248,7 @@ static void set_features(void) set_feature_default("DECC$FILENAME_UNIX_REPORT", ENABLE); } - /* When reporting UNIX filenames, glob the same way */ + /* When reporting Unix filenames, glob the same way */ set_feature_default ("DECC$GLOB_UNIX_STYLE", ENABLE); /* The VMS version numbers on Unix filenames is incompatible with most */ diff --git a/packages/vms/gnv_curl_configure.sh b/packages/vms/gnv_curl_configure.sh index f71421080f..2eeb209c81 100644 --- a/packages/vms/gnv_curl_configure.sh +++ b/packages/vms/gnv_curl_configure.sh @@ -23,7 +23,7 @@ # 28-Dec-2012 J. Malmberg Update for Bash 4.2.39 #========================================================================== # -# POSIX exit mode is needed for UNIX shells. +# POSIX exit mode is needed for Unix shells. export GNV_CC_MAIN_POSIX_EXIT=1 # # Where to look for the helper files. diff --git a/packages/vms/make_gnv_curl_install.sh b/packages/vms/make_gnv_curl_install.sh index d2150e6251..5099fe447e 100644 --- a/packages/vms/make_gnv_curl_install.sh +++ b/packages/vms/make_gnv_curl_install.sh @@ -33,7 +33,7 @@ export GNV_CXX_QUALIFIERS=/DEBUG/OPTIMIZE/float=ieee/ieee_mode=denorm_results export GNV_CC_NO_INC_PRIMARY=1 # # -# POSIX exit mode is needed for UNIX shells. +# POSIX exit mode is needed for Unix shells. export GNV_CC_MAIN_POSIX_EXIT=1 make cd ../.. diff --git a/src/macos/MACINSTALL.TXT b/src/macos/MACINSTALL.TXT index 7dffa9d178..1839ef205c 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 write 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/tool_cfgable.h b/src/tool_cfgable.h index 2336016096..cf8d563b02 100644 --- a/src/tool_cfgable.h +++ b/src/tool_cfgable.h @@ -201,14 +201,14 @@ struct OperationConfig { #ifdef CURLDEBUG bool test_event_based; #endif - char *xoauth2_bearer; /* XOAUTH2 bearer token */ - bool nonpn; /* enable/disable TLS NPN extension */ - bool noalpn; /* enable/disable TLS ALPN extension */ - char *unix_socket_path; /* path to UNIX domain socket */ + char *xoauth2_bearer; /* XOAUTH2 bearer token */ + bool nonpn; /* enable/disable TLS NPN extension */ + bool noalpn; /* enable/disable TLS ALPN extension */ + char *unix_socket_path; /* path to Unix domain socket */ struct GlobalConfig *global; struct OperationConfig *prev; - struct OperationConfig *next; /* Always last in the struct */ + struct OperationConfig *next; /* Always last in the struct */ }; struct GlobalConfig { diff --git a/src/tool_help.c b/src/tool_help.c index e75020ae87..424a2fa9c1 100644 --- a/src/tool_help.c +++ b/src/tool_help.c @@ -231,7 +231,7 @@ static const char *const helptext[] = { " --tlsuser USER TLS username", " --tlspassword STRING TLS password", " --tlsauthtype STRING TLS authentication type (default: SRP)", - " --unix-socket FILE Connect through this UNIX domain socket", + " --unix-socket FILE Connect through this Unix domain socket", " -A, --user-agent STRING Send User-Agent STRING to server (H)", " -v, --verbose Make the operation more talkative", " -V, --version Show version number and quit", @@ -275,7 +275,7 @@ static const struct feat feats[] = { {"CharConv", CURL_VERSION_CONV}, {"TLS-SRP", CURL_VERSION_TLSAUTH_SRP}, {"HTTP2", CURL_VERSION_HTTP2}, - {"UNIX-Sockets", CURL_VERSION_UNIX_SOCKETS}, + {"UnixSockets", CURL_VERSION_UNIX_SOCKETS}, }; void tool_help(void) diff --git a/tests/FILEFORMAT b/tests/FILEFORMAT index 1637357c80..3b46e2893f 100644 --- a/tests/FILEFORMAT +++ b/tests/FILEFORMAT @@ -333,7 +333,7 @@ Available substitute variables include: %HOSTIP - IPv4 address of the host running this test %HTTP6PORT - IPv6 port number of the HTTP server %HTTPPIPEPORT - Port number of the HTTP pipelining server -%HTTPUNIXPATH - Path to the UNIX socket of the HTTP server +%HTTPUNIXPATH - Path to the Unix socket of the HTTP server %HTTPPORT - Port number of the HTTP server %HTTPSPORT - Port number of the HTTPS server %HTTPTLS6PORT - IPv6 port number of the HTTP TLS server diff --git a/tests/README b/tests/README index 7ef7f81d2f..a8b8adcee9 100644 --- a/tests/README +++ b/tests/README @@ -81,7 +81,7 @@ The cURL Test Suite machine, or just move the servers in case you have local services on any of those ports. - The HTTP server supports listening on a UNIX domain socket, the default + The HTTP server supports listening on a Unix domain socket, the default location is 'http.sock'. 1.4 Run diff --git a/tests/data/test1435 b/tests/data/test1435 index 56ff9d11e2..bd171a4531 100644 --- a/tests/data/test1435 +++ b/tests/data/test1435 @@ -25,7 +25,7 @@ unix-sockets http-unix -simple HTTP GET over UNIX socket +simple HTTP GET over Unix socket --unix-socket %HTTPUNIXPATH http://server-interpreted.example.com/1435 diff --git a/tests/data/test1436 b/tests/data/test1436 index b16eadde07..e40a3bf4be 100644 --- a/tests/data/test1436 +++ b/tests/data/test1436 @@ -39,7 +39,7 @@ unix-sockets http-unix -HTTP requests with multiple connections over UNIX socket +HTTP requests with multiple connections over Unix socket --unix-socket %HTTPUNIXPATH http://one.example.com/14360001 http://two.example.com/14360002 http://one.example.com/14360003 diff --git a/tests/data/test2013 b/tests/data/test2013 index 60e85f3ea9..0985b32def 100644 --- a/tests/data/test2013 +++ b/tests/data/test2013 @@ -35,7 +35,7 @@ file Metalink -Metalink local XML file, attempt UNIX absolute path +Metalink local XML file, attempt Unix absolute path --metalink file://%PWD/log/test2013.metalink diff --git a/tests/data/test2014 b/tests/data/test2014 index 01dc8b31b3..d2dbdc7a79 100644 --- a/tests/data/test2014 +++ b/tests/data/test2014 @@ -35,7 +35,7 @@ file Metalink -Metalink local XML file, attempt UNIX path relative to current +Metalink local XML file, attempt Unix path relative to current --metalink file://%PWD/log/test2014.metalink diff --git a/tests/data/test2015 b/tests/data/test2015 index e4d09d50e3..a35f3117d9 100644 --- a/tests/data/test2015 +++ b/tests/data/test2015 @@ -35,7 +35,7 @@ file Metalink -Metalink local XML file, attempt UNIX path relative to upper +Metalink local XML file, attempt Unix path relative to upper --metalink file://%PWD/log/test2015.metalink diff --git a/tests/data/test2016 b/tests/data/test2016 index fbd6cd5d6b..572aa65c5c 100644 --- a/tests/data/test2016 +++ b/tests/data/test2016 @@ -35,7 +35,7 @@ file Metalink -Metalink local XML file, attempt UNIX path traversal +Metalink local XML file, attempt Unix path traversal --metalink file://%PWD/log/test2016.metalink diff --git a/tests/data/test2017 b/tests/data/test2017 index 52df14e389..15fd9347c8 100644 --- a/tests/data/test2017 +++ b/tests/data/test2017 @@ -35,7 +35,7 @@ file Metalink -Metalink local XML file, attempt UNIX home path traversal +Metalink local XML file, attempt Unix home path traversal --metalink file://%PWD/log/test2017.metalink diff --git a/tests/data/test2018 b/tests/data/test2018 index b76233e1ad..6d0652dcc6 100644 --- a/tests/data/test2018 +++ b/tests/data/test2018 @@ -35,7 +35,7 @@ file Metalink -Metalink local XML file, attempt UNIX questionable file name I +Metalink local XML file, attempt Unix questionable file name I --metalink file://%PWD/log/test2018.metalink diff --git a/tests/data/test2019 b/tests/data/test2019 index cd098040bc..b17b3f23f9 100644 --- a/tests/data/test2019 +++ b/tests/data/test2019 @@ -35,7 +35,7 @@ file Metalink -Metalink local XML file, attempt UNIX questionable file name II +Metalink local XML file, attempt Unix questionable file name II --metalink file://%PWD/log/test2019.metalink diff --git a/tests/data/test2020 b/tests/data/test2020 index f89600b64c..8bf85a4d7f 100644 --- a/tests/data/test2020 +++ b/tests/data/test2020 @@ -35,7 +35,7 @@ file Metalink -Metalink local XML file, attempt UNIX questionable file name III +Metalink local XML file, attempt Unix questionable file name III --metalink file://%PWD/log/test2020.metalink diff --git a/tests/data/test2021 b/tests/data/test2021 index 133eb1678c..20a92244a2 100644 --- a/tests/data/test2021 +++ b/tests/data/test2021 @@ -35,7 +35,7 @@ file Metalink -Metalink local XML file, attempt UNIX questionable file name IV +Metalink local XML file, attempt Unix questionable file name IV --metalink file://%PWD/log/test2021.metalink diff --git a/tests/data/test2022 b/tests/data/test2022 index 8cb0df5206..4f4efd1766 100644 --- a/tests/data/test2022 +++ b/tests/data/test2022 @@ -35,7 +35,7 @@ file Metalink -Metalink local XML file, attempt UNIX questionable file name V +Metalink local XML file, attempt Unix questionable file name V --metalink file://%PWD/log/test2022.metalink diff --git a/tests/data/test574 b/tests/data/test574 index c1584480ca..cb41f03ec4 100644 --- a/tests/data/test574 +++ b/tests/data/test574 @@ -25,7 +25,7 @@ ftp lib574 -FTP wildcard download - changed fnmatch, 2x perform (UNIX LIST response) +FTP wildcard download - changed fnmatch, 2x perform (Unix LIST response) ftp://%HOSTIP:%FTPPORT/fully_simulated/UNIX/*.txt diff --git a/tests/data/test576 b/tests/data/test576 index 52a6664f1a..74a3aedd13 100644 --- a/tests/data/test576 +++ b/tests/data/test576 @@ -22,7 +22,7 @@ ftp lib576 -FTP wildcard download - skip/parser_correctness/CURLOPT_FNMATCH_FUNCTION (UNIX) +FTP wildcard download - skip/parser_correctness/CURLOPT_FNMATCH_FUNCTION (Unix) ftp://%HOSTIP:%FTPPORT/fully_simulated/UNIX/* diff --git a/tests/httpserver.pl b/tests/httpserver.pl index 1b8c3d2846..b60dadc3b1 100755 --- a/tests/httpserver.pl +++ b/tests/httpserver.pl @@ -36,7 +36,7 @@ use serverhelp qw( my $verbose = 0; # set to 1 for debugging my $port = 8990; # just a default -my $unix_socket; # location to place a listening UNIX socket +my $unix_socket; # location to place a listening Unix socket my $ipvnum = 4; # default IP version of http server my $idnum = 1; # dafault http server instance number my $proto = 'http'; # protocol the http server speaks diff --git a/tests/runtests.pl b/tests/runtests.pl index 6b1a502d7c..cac74aa476 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -141,7 +141,7 @@ my $HTTPTLSPORT; # HTTP TLS (non-stunnel) server port my $HTTPTLS6PORT; # HTTP TLS (non-stunnel) IPv6 server port my $HTTPPROXYPORT; # HTTP proxy port, when using CONNECT my $HTTPPIPEPORT; # HTTP pipelining port -my $HTTPUNIXPATH; # HTTP server UNIX domain socket path +my $HTTPUNIXPATH; # HTTP server Unix domain socket path my $srcdir = $ENV{'srcdir'} || '.'; my $CURL="../src/curl".exe_ext(); # what curl executable to run on the tests @@ -203,12 +203,12 @@ my $ssl_version; # set if libcurl is built with SSL support my $large_file; # set if libcurl is built with large file support my $has_idn; # set if libcurl is built with IDN support my $http_ipv6; # set if HTTP server has IPv6 support -my $http_unix; # set if HTTP server has UNIX sockets support +my $http_unix; # set if HTTP server has Unix sockets support my $ftp_ipv6; # set if FTP server has IPv6 support my $tftp_ipv6; # set if TFTP server has IPv6 support my $gopher_ipv6; # set if Gopher server has IPv6 support my $has_ipv6; # set if libcurl is built with IPv6 support -my $has_unix; # set if libcurl is built with UNIX sockets support +my $has_unix; # set if libcurl is built with Unix sockets support my $has_libz; # set if libcurl is built with libz support my $has_getrlimit; # set if system has getrlimit() my $has_ntlm; # set if libcurl is built with NTLM support @@ -317,7 +317,7 @@ my $USER = $ENV{USER}; # Linux if (!$USER) { $USER = $ENV{USERNAME}; # Windows if (!$USER) { - $USER = $ENV{LOGNAME}; # Some UNIX (I think) + $USER = $ENV{LOGNAME}; # Some Unix (I think) } } @@ -726,7 +726,7 @@ sub verifyhttp { my $server = servername_id($proto, $ipvnum, $idnum); my $pid = 0; my $bonus=""; - # $port_or_path contains a path for UNIX sockets, sws ignores the port + # $port_or_path contains a path for Unix sockets, sws ignores the port my $port = ($ipvnum eq "unix") ? 80 : $port_or_path; my $verifyout = "$LOGDIR/". @@ -1215,7 +1215,7 @@ sub runhttpserver { $verbose_flag .= "1 "; } elsif($alt eq "unix") { - # IP (protocol) is mutually exclusive with UNIX sockets + # IP (protocol) is mutually exclusive with Unix sockets $ipvnum = "unix"; } @@ -2118,7 +2118,7 @@ sub responsive_http_server { $idnum = 2; } elsif($alt eq "unix") { - # IP (protocol) is mutually exclusive with UNIX sockets + # IP (protocol) is mutually exclusive with Unix sockets $ipvnum = "unix"; } @@ -2373,7 +2373,7 @@ sub checksystem { # Generate a "proto-ipv6" version of each protocol to match the # IPv6 name and a "proto-unix" to match the variant which - # uses UNIX domain sockets. This works even if support isn't + # uses Unix domain sockets. This works even if support isn't # compiled in because the test will fail. push @protocols, map(("$_-ipv6", "$_-unix"), @protocols); @@ -2548,7 +2548,7 @@ sub checksystem { } if($has_unix) { - # client has UNIX sockets support, check whether the HTTP server has it + # client has Unix sockets support, check whether the HTTP server has it my @sws = `server/sws --version`; $http_unix = 1 if($sws[0] =~ /unix/); } @@ -2584,7 +2584,7 @@ sub checksystem { logmsg sprintf(" track memory: %s\n", $has_memory_tracking?"ON ":"OFF"); logmsg sprintf("* valgrind: %8s", $valgrind?"ON ":"OFF"); logmsg sprintf(" HTTP IPv6 %s\n", $http_ipv6?"ON ":"OFF"); - logmsg sprintf("* HTTP UNIX %s\n", $http_unix?"ON ":"OFF"); + logmsg sprintf("* HTTP Unix %s\n", $http_unix?"ON ":"OFF"); logmsg sprintf("* FTP IPv6 %8s", $ftp_ipv6?"ON ":"OFF"); logmsg sprintf(" Libtool lib: %s\n", $libtool?"ON ":"OFF"); logmsg sprintf("* Shared build: %-3s", $has_shared); @@ -2638,9 +2638,9 @@ sub checksystem { logmsg sprintf("* HTTP-PIPE/%d \n", $HTTPPIPEPORT); if($has_unix) { - logmsg "* UNIX socket paths:\n"; + logmsg "* Unix socket paths:\n"; if($http_unix) { - logmsg sprintf("* HTTP-UNIX:%s\n", $HTTPUNIXPATH); + logmsg sprintf("* HTTP-Unix:%s\n", $HTTPUNIXPATH); } } @@ -2692,7 +2692,7 @@ sub subVariables { $$thing =~ s/%TFTP6PORT/$TFTP6PORT/g; $$thing =~ s/%TFTPPORT/$TFTPPORT/g; - # server UNIX domain socket paths + # server Unix domain socket paths $$thing =~ s/%HTTPUNIXPATH/$HTTPUNIXPATH/g; @@ -4962,7 +4962,7 @@ $HTTPTLSPORT = $base++; # HTTP TLS (non-stunnel) server port $HTTPTLS6PORT = $base++; # HTTP TLS (non-stunnel) IPv6 server port $HTTPPROXYPORT = $base++; # HTTP proxy port, when using CONNECT $HTTPPIPEPORT = $base++; # HTTP pipelining port -$HTTPUNIXPATH = 'http.sock'; # HTTP server UNIX domain socket path +$HTTPUNIXPATH = 'http.sock'; # HTTP server Unix domain socket path ####################################################################### # clear and create logging directory: diff --git a/tests/server/sws.c b/tests/server/sws.c index 24bfdebe9c..8cd30c5a52 100644 --- a/tests/server/sws.c +++ b/tests/server/sws.c @@ -1368,7 +1368,7 @@ static curl_socket_t connect_to(const char *ipaddr, unsigned short port) #endif /* ENABLE_IPV6 */ #ifdef USE_UNIX_SOCKETS case AF_UNIX: - logmsg("Proxying through UNIX socket is not (yet?) supported."); + logmsg("Proxying through Unix socket is not (yet?) supported."); return CURL_SOCKET_BAD; #endif /* USE_UNIX_SOCKETS */ } @@ -2163,7 +2163,7 @@ int main(int argc, char *argv[]) goto sws_cleanup; } /* socket server is not alive, now check if it was actually a socket. - * Systems which have UNIX sockets will also have lstat */ + * Systems which have Unix sockets will also have lstat */ rc = lstat(unix_socket, &statbuf); if (0 != rc) { logmsg("Error binding socket, failed to stat %s: (%d) %s", @@ -2208,7 +2208,7 @@ int main(int argc, char *argv[]) } #ifdef USE_UNIX_SOCKETS - /* listen succeeds, so let's assume a valid listening UNIX socket */ + /* listen succeeds, so let's assume a valid listening Unix socket */ unlink_socket = true; #endif diff --git a/tests/server/tftpd.c b/tests/server/tftpd.c index 745efad3a6..25557932f3 100644 --- a/tests/server/tftpd.c +++ b/tests/server/tftpd.c @@ -1371,7 +1371,7 @@ abort: /* * Send a nak packet (error message). Error code passed in is one of the - * standard TFTP codes, or a UNIX errno offset by 100. + * standard TFTP codes, or a Unix errno offset by 100. */ static void nak(int error) {