diff options
author | demon <demon@FreeBSD.org> | 2001-11-08 14:48:32 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2001-11-08 14:48:32 +0800 |
commit | 402de29f0c0ce735b4f686f2351fe95b6cfcecde (patch) | |
tree | ea61e50b51facbd74b7a2d5dbf0d14c91384288e /www | |
parent | 4e07b1c0fe1bac5f3c522d4e0ae1b7956a82cc40 (diff) | |
download | freebsd-ports-gnome-402de29f0c0ce735b4f686f2351fe95b6cfcecde.tar.gz freebsd-ports-gnome-402de29f0c0ce735b4f686f2351fe95b6cfcecde.tar.zst freebsd-ports-gnome-402de29f0c0ce735b4f686f2351fe95b6cfcecde.zip |
Add support for virtual hosts.
Submitted by: Iasen Kostoff <tbyte@otel.net>
Diffstat (limited to 'www')
-rw-r--r-- | www/webcrawl/Makefile | 1 | ||||
-rw-r--r-- | www/webcrawl/files/patch-http.c | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/www/webcrawl/Makefile b/www/webcrawl/Makefile index b1115668e8c0..915b48b9a69b 100644 --- a/www/webcrawl/Makefile +++ b/www/webcrawl/Makefile @@ -7,6 +7,7 @@ PORTNAME= webcrawl PORTVERSION= 1.10 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= apps/www/mirroring diff --git a/www/webcrawl/files/patch-http.c b/www/webcrawl/files/patch-http.c new file mode 100644 index 000000000000..bc988f9957df --- /dev/null +++ b/www/webcrawl/files/patch-http.c @@ -0,0 +1,12 @@ +--- http.c Fri Apr 30 12:04:19 1999 ++++ http.c.new Tue Nov 6 13:28:06 2001 +@@ -106,8 +106,7 @@ + alarm(options.timeout); + } + +- strcpy (szRequest, "GET /"); strcat (szRequest, pszFile); +- strcat (szRequest, " HTTP/1.0\n"); ++ snprintf (szRequest, 512, "GET http://%s/%s HTTP/1.0\n", pszHost, pszFile); + strcat (szRequest, "User-Agent: "); + strcat (szRequest, options.userAgent); + strcat (szRequest, "\n\n"); |