mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
Add support for virtual hosts.
Submitted by: Iasen Kostoff <tbyte@otel.net>
This commit is contained in:
parent
30458d205e
commit
8cf924ca68
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=49834
2 changed files with 13 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= webcrawl
|
||||
PORTVERSION= 1.10
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= ${MASTER_SITE_SUNSITE}
|
||||
MASTER_SITE_SUBDIR= apps/www/mirroring
|
||||
|
|
12
www/webcrawl/files/patch-http.c
Normal file
12
www/webcrawl/files/patch-http.c
Normal file
|
@ -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");
|
Loading…
Add table
Reference in a new issue