From owner-cvs-usrbin Fri Jan 31 11:55:54 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA09073 for cvs-usrbin-outgoing; Fri, 31 Jan 1997 11:55:54 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA09066; Fri, 31 Jan 1997 11:55:53 -0800 (PST) Date: Fri, 31 Jan 1997 11:55:53 -0800 (PST) From: Garrett Wollman Message-Id: <199701311955.LAA09066@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin Subject: cvs commit: src/usr.bin/fetch fetch.1 fetch.h http.c main.c Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wollman 97/01/31 11:55:52 Modified: usr.bin/fetch fetch.1 fetch.h http.c main.c Log: Some fixes for HTTP: 1) Implement redirects (or try to, at least). 2) Implement automatic retry after 503 errors when Retry-After is given. 3) Implement a -a flag to enable both of these behaviors. 4) Recognize Transfer-Encoding headers and emit a warning that the file is likely to be damaged. 5) Bug fix: only write the amount of data we read. 6) Actually document some of these. 7) Fix the usage message to display flags in semi-alphabetical order. Revision Changes Path 1.13 +16 -1 src/usr.bin/fetch/fetch.1 1.2 +2 -1 src/usr.bin/fetch/fetch.h 1.2 +252 -25 src/usr.bin/fetch/http.c 1.33 +23 -19 src/usr.bin/fetch/main.c