From: Yedaya Katsman Date: Wed, 2 Apr 2025 13:59:42 +0000 (+0300) Subject: tests/serverhelp: remove last remnants of http-pipe server X-Git-Tag: curl-8_14_0~400 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=878d1fc3406c5bce5ac48af320f43e3cee6456a4;p=thirdparty%2Fcurl.git tests/serverhelp: remove last remnants of http-pipe server Followup on https://github.com/curl/curl/pull/5921 Closes #16924 --- diff --git a/tests/serverhelp.pm b/tests/serverhelp.pm index dba0cc509b..30abd13b68 100644 --- a/tests/serverhelp.pm +++ b/tests/serverhelp.pm @@ -116,7 +116,7 @@ sub serverfactors { my $idnum; if($server =~ - /^((ftp|http|imap|pop3|smtp|http-pipe)s?)(\d*)(-ipv6|)$/) { + /^((ftp|http|imap|pop3|smtp)s?)(\d*)(-ipv6|)$/) { $proto = $1; $idnum = ($3 && ($3 > 1)) ? $3 : 1; $ipvnum = ($4 && ($4 =~ /6$/)) ? 6 : 4; @@ -142,7 +142,7 @@ sub servername_str { $proto = uc($proto) if($proto); die "unsupported protocol: '$proto'" unless($proto && - ($proto =~ /^(((FTP|HTTP|HTTP\/2|HTTP\/3|IMAP|POP3|GOPHER|SMTP|HTTP-PIPE)S?)|(TFTP|SFTP|SOCKS|SSH|RTSP|HTTPTLS|DICT|SMB|SMBS|TELNET|MQTT))$/)); + ($proto =~ /^(((FTP|HTTP|HTTP\/2|HTTP\/3|IMAP|POP3|GOPHER|SMTP)S?)|(TFTP|SFTP|SOCKS|SSH|RTSP|HTTPTLS|DICT|SMB|SMBS|TELNET|MQTT))$/)); $ipver = (not $ipver) ? 'ipv4' : lc($ipver); die "unsupported IP version: '$ipver'" unless($ipver &&