summaryrefslogtreecommitdiff
path: root/ftp/pavuk/files
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>1998-12-16 22:37:40 +0000
committerBill Fumerola <billf@FreeBSD.org>1998-12-16 22:37:40 +0000
commitc517d4abf66d03ce2587a0f00584eff801fe80e5 (patch)
treee39fc21dc5fd6e8313b53d42e8c2401315b7a713 /ftp/pavuk/files
parentCorrect the installation of the lsof man page (diff)
Pavuk is a HTTP, FTP and Gopher mirroring tool.
What this program does : - recursive HTTP , HTTP over SSL , FTP and Gopher document retrieving - synchronizing retrieved local copies of document with remote - partial content retrieving on servers which suppots it (FTP and HTTP/1.1) - follows moved documents - supports "robots.txt" standart - supports HTTP and FTP proxy server - supports HTTP authentification - shows document tree - have interface to "at" command for scheduling - have X-windows user interface (built with own widgets based on plain Xt) - may be built with or without X-windows user interface - can handle setup files PR: ports/6085
Notes
Notes: svn path=/head/; revision=15389
Diffstat (limited to 'ftp/pavuk/files')
-rw-r--r--ftp/pavuk/files/patch-ab22
1 files changed, 22 insertions, 0 deletions
diff --git a/ftp/pavuk/files/patch-ab b/ftp/pavuk/files/patch-ab
new file mode 100644
index 000000000000..8fb78d9dfe8c
--- /dev/null
+++ b/ftp/pavuk/files/patch-ab
@@ -0,0 +1,22 @@
+--- src/net.c Sun Feb 1 10:53:47 1998
++++ /home/andy/tmp/wrk/src/net.c Fri Mar 20 22:00:21 1998
+@@ -129,7 +129,9 @@
+
+ }
+
++#ifndef __FreeBSD__
+ fcntl(sock , F_SETFL , O_SYNC);
++#endif
+ if ((connect(sock, (struct sockaddr*)&addr, sizeof(addr)) == -1) &&
+ (errno && (errno != EISCONN)))
+ {
+@@ -259,7 +261,9 @@
+ }
+ }
+
++#ifndef __FreeBSD__
+ fcntl(sock , F_SETFL , O_SYNC);
++#endif
+ }
+ #endif
+ if ((rsock < 0) && ((rsock = accept(sock, (struct sockaddr*)&caller, &p)) == -1))