Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Plug memory leak. | des | 2001-05-26 | 1 | -6/+3 | |
| | | | | PR: 27506 | |||||
* | Add some error codes that were added in RFC2616. | des | 2001-05-23 | 1 | -0/+3 | |
| | ||||||
* | Apply 'const' liberally. | archie | 2001-04-24 | 8 | -129/+134 | |
| | | | | Fix some other minor glitches. | |||||
* | Grammar police: "its", not "it's", is the possessive form of "it". | dd | 2001-04-15 | 1 | -1/+1 | |
| | ||||||
* | If the server's reply to the SIZE command is unparseable, reset us->size | des | 2001-04-07 | 1 | -0/+1 | |
| | | | | to -1 so the caller will know it's invalid. This is an MFC candidate. | |||||
* | MAN[1-9] -> MAN. | ru | 2001-03-27 | 1 | -1/+1 | |
| | ||||||
* | Use high port range by default, and replace the 'h' option with an 'l' option | des | 2001-03-24 | 2 | -7/+7 | |
| | | | | that forces the ftp code to use the low (default) port range instead. | |||||
* | Don't remember an EINTR, since the caller may want to restart the call. | des | 2001-03-07 | 1 | -2/+4 | |
| | ||||||
* | Support lower-case versions of the proxy environment variables. | des | 2001-03-07 | 3 | -3/+13 | |
| | | | | PR: bin/25494 | |||||
* | mdoc(7) police: fixed broken references. | ru | 2001-01-16 | 1 | -0/+1 | |
| | ||||||
* | Prepare for mdoc(7)NG. | ru | 2001-01-16 | 1 | -1/+1 | |
| | ||||||
* | The user name for anonymous ftp is now "anonymous". | des | 2001-01-08 | 1 | -10/+17 | |
| | | | | | Remove the period after the last man page reference. Add a reference to RFC1635, and sort the RFC references by number. | |||||
* | Back out previous (accidental) commit. | des | 2001-01-08 | 1 | -1/+1 | |
| | ||||||
* | Use "anonymous" rather than "ftp" as login name for anonymous ftp. | des | 2001-01-08 | 2 | -4/+3 | |
| | | | | | | Rather than have a separate (misnamed) FTP_ANONYMOUS_PASSWORD constant, use FTP_ANONYMOUS_USER (i.e. "anonymous") to construct the anonymous ftp password if getlogin() fails. | |||||
* | Document FTP_LOGIN. | des | 2000-12-22 | 1 | -0/+2 | |
| | ||||||
* | Check the FTP_LOGIN environment variable before falling back on | des | 2000-12-22 | 1 | -0/+2 | |
| | | | | FTP_ANONYMOUS_USER. | |||||
* | Avoid a segfault (due to an unitialized pointer) when parsing URLs that have | des | 2000-12-13 | 1 | -0/+2 | |
| | | | | no scheme or host part. | |||||
* | Somewhere along the line, I misunderstood the whole FTP_PASSIVE_MODE debate | des | 2000-12-06 | 2 | -4/+4 | |
| | | | | | | | and had libfetch selecting passive mode even when FTP_PASSIVE_MODE was not set at all, which is really quite surprising unless you know about it. So change it to the agreed default behaviour of selecting passive mode if FTP_PASSIVE_MODE is set, but not "no". | |||||
* | Remove some obsolete comments. | des | 2000-12-01 | 1 | -13/+0 | |
| | ||||||
* | Clean up the whitespace encoding code. | des | 2000-12-01 | 1 | -5/+6 | |
| | ||||||
* | Add SCHEME_HTTPS. | des | 2000-12-01 | 1 | -0/+1 | |
| | ||||||
* | Fix old-style proxy specs: default to FTP if FTP_PROXY was set; only default | des | 2000-11-27 | 1 | -2/+6 | |
| | | | | to HTTP if HTTP_PROXY was used instead. | |||||
* | Don't try to get the proxy port number from /etc/services. | des | 2000-11-27 | 1 | -4/+0 | |
| | ||||||
* | Don't go haywire if the server closes the connection in the middle of a | des | 2000-11-22 | 1 | -1/+1 | |
| | | | | multiline response (proper fix this time). | |||||
* | Revert previous commit, it was somewhat hasty. | des | 2000-11-22 | 1 | -5/+1 | |
| | ||||||
* | Don't go haywire if the server closes the connection during a multiline | des | 2000-11-22 | 1 | -1/+5 | |
| | | | | response. | |||||
* | log | ru | 2000-11-22 | 1 | -1/+2 | |
| | ||||||
* | Spell the des's name correctly. | ru | 2000-11-14 | 1 | -2/+2 | |
| | ||||||
* | Use Fx macro wherever possible. | ru | 2000-11-14 | 1 | -1/+3 | |
| | ||||||
* | Use the documented (and historical) defaults. Centralize the decision logic | des | 2000-11-10 | 4 | -37/+45 | |
| | | | | | | in order to avoid this bug in the future. Submitted by: se | |||||
* | Use CHECK_FLAG | des | 2000-10-29 | 4 | -22/+22 | |
| | ||||||
* | Stricter error checking in the I/O functions. | des | 2000-10-29 | 1 | -1/+25 | |
| | ||||||
* | Add CHECK_FLAGS, a macro for (safely) checking if a particular flag is set. | des | 2000-10-29 | 1 | -0/+5 | |
| | ||||||
* | Document FTP_PASSIVE_MODE and FTP_PASSWORD. | des | 2000-10-29 | 1 | -1/+8 | |
| | | | | | PR: docs/20626 Submitted by: nik | |||||
* | Fix this my way. David had absolutely no call overriding MAINTAINER without | des | 2000-10-28 | 1 | -3/+3 | |
| | | | | even giving me 24 hours to read his mail and find the bug. | |||||
* | Install per function manpages so one doesn't mistakenly think we don't | obrien | 2000-10-28 | 1 | -0/+8 | |
| | | | | have manpages for libfetch's functions. | |||||
* | Repeat after me, "check to see that a pointer isn't NULL before | obrien | 2000-10-28 | 1 | -3/+3 | |
| | | | | dereferenceing it". This fixes ``pkg_add -r''. | |||||
* | MFS: don't expect result code until you close the data connection | des | 2000-10-27 | 1 | -3/+3 | |
| | ||||||
* | Use funopen() instead of fdopen(). This fixes three problems: | des | 2000-10-22 | 1 | -4/+118 | |
| | | | | | | | | | | | | | | - ftpTimeout was not honored when reading actual data, as opposed to talking protocol - connection caching was broken because _ftp_cached_connect() would see the result of the transfer instead of the result of the NOOP. - if the RETR succeeded, but an error occurred later (as can happen when talking to a proxy), the error would not be detected. There still remains to register an atexit(3) callback to close the cached connection gracefully instead of just dropping it on the floor. | |||||
* | If the scheme is HTTP or HTTPS, percent-escape whitespace in the document | des | 2000-10-21 | 1 | -1/+21 | |
| | | | | | | part. Submitted by: green | |||||
* | Argh! Fix passive mode selection (again) | des | 2000-10-17 | 1 | -2/+3 | |
| | ||||||
* | Use the right user name | des | 2000-10-13 | 1 | -3/+3 | |
| | ||||||
* | Document recent changes in URL parsing and proxy handling | des | 2000-10-12 | 1 | -10/+20 | |
| | ||||||
* | ftp.c needs _http_request() | des | 2000-10-12 | 1 | -0/+11 | |
| | ||||||
* | Rework proxy handling so that proxies can be specified as URLs. | des | 2000-10-12 | 2 | -206/+156 | |
| | | | | As a side effect, remove a lot of duplicate and now redundant code. | |||||
* | Relax URL syntax so that schemeless URLs are supported. | des | 2000-10-12 | 1 | -24/+23 | |
| | ||||||
* | Add macros for the names of the URL schemes we support. | des | 2000-10-12 | 1 | -0/+5 | |
| | ||||||
* | Make the ENVIRONMENT section more legible, and mention that HTTP_AUTH is | des | 2000-10-12 | 1 | -4/+10 | |
| | | | | colon-separated. | |||||
* | Work around buggy servers such as NCSA httpd which send an incomplete | des | 2000-09-24 | 1 | -9/+18 | |
| | | | | HTTP-Version on the Status-Line (see RFC2616 sections 3.1 and 6.1). | |||||
* | Document the FTP_PROXY and HTTP_PROXY variables better. | des | 2000-08-31 | 1 | -0/+4 | |
| |