aboutsummaryrefslogtreecommitdiff
path: root/lib/libfetch
Commit message (Expand)AuthorAgeFilesLines
* Use the documented (and historical) defaults. Centralize the decision logicDag-Erling Smørgrav2000-11-104-37/+45
* Use CHECK_FLAGDag-Erling Smørgrav2000-10-294-22/+22
* Stricter error checking in the I/O functions.Dag-Erling Smørgrav2000-10-291-1/+25
* Add CHECK_FLAGS, a macro for (safely) checking if a particular flag is set.Dag-Erling Smørgrav2000-10-291-0/+5
* Document FTP_PASSIVE_MODE and FTP_PASSWORD.Dag-Erling Smørgrav2000-10-291-1/+8
* Fix this my way. David had absolutely no call overriding MAINTAINER withoutDag-Erling Smørgrav2000-10-281-3/+3
* Install per function manpages so one doesn't mistakenly think we don'tDavid E. O'Brien2000-10-281-0/+8
* Repeat after me, "check to see that a pointer isn't NULL beforeDavid E. O'Brien2000-10-281-3/+3
* MFS: don't expect result code until you close the data connectionDag-Erling Smørgrav2000-10-271-3/+3
* Use funopen() instead of fdopen(). This fixes three problems:Dag-Erling Smørgrav2000-10-221-4/+118
* If the scheme is HTTP or HTTPS, percent-escape whitespace in the documentDag-Erling Smørgrav2000-10-211-1/+21
* Argh! Fix passive mode selection (again)Dag-Erling Smørgrav2000-10-171-2/+3
* Use the right user nameDag-Erling Smørgrav2000-10-131-3/+3
* Document recent changes in URL parsing and proxy handlingDag-Erling Smørgrav2000-10-121-10/+20
* ftp.c needs _http_request()Dag-Erling Smørgrav2000-10-121-0/+11
* Rework proxy handling so that proxies can be specified as URLs.Dag-Erling Smørgrav2000-10-122-206/+156
* Relax URL syntax so that schemeless URLs are supported.Dag-Erling Smørgrav2000-10-121-24/+23
* Add macros for the names of the URL schemes we support.Dag-Erling Smørgrav2000-10-121-0/+5
* Make the ENVIRONMENT section more legible, and mention that HTTP_AUTH isDag-Erling Smørgrav2000-10-121-4/+10
* Work around buggy servers such as NCSA httpd which send an incompleteDag-Erling Smørgrav2000-09-241-9/+18
* Document the FTP_PROXY and HTTP_PROXY variables better.Dag-Erling Smørgrav2000-08-311-0/+4
* Grok 125 replies to passive RETR. This fixes an interoperability bug withDag-Erling Smørgrav2000-08-211-1/+2
* Fix signedness bogon.Dag-Erling Smørgrav2000-08-021-7/+6
* Don't fail if _ftp_stat() reports a protocol error, since that most likelyDag-Erling Smørgrav2000-07-271-0/+1
* If the server reports the size as 0, treat it as unknown. This works aroundDag-Erling Smørgrav2000-07-251-3/+2
* Centralize the default port finding code.Dag-Erling Smørgrav2000-07-253-33/+43
* Ignore environment variables that are set but empty.Dag-Erling Smørgrav2000-07-211-40/+81
* Document the proxy support better.Dag-Erling Smørgrav2000-07-211-2/+15
* The decision to use an HTTP proxy for FTP documents belongs in the FTP codeDag-Erling Smørgrav2000-07-212-13/+24
* Don't send port number to proxy unless it's not the standard FTP portDag-Erling Smørgrav2000-07-211-2/+6
* Fix the case where the file name is preceded by a lone slash.Dag-Erling Smørgrav2000-07-201-1/+1
* Don't try to skip to the requested offset if the server returns more dataDag-Erling Smørgrav2000-07-191-8/+10
* Don't take a failure to stat a file to mean that it doesn't exist, as it mayDag-Erling Smørgrav2000-07-181-1/+5
* Introduce fetchXGet*(), which combine the functionalities of fetchGet*() andDag-Erling Smørgrav2000-07-176-113/+236
* Don't forget to set file descriptor to -1 after closing it, since the codeDag-Erling Smørgrav2000-07-171-1/+1
* Use a symbolic constant instead of hardcoding 999Dag-Erling Smørgrav2000-07-171-10/+11
* Don't forget to declare fetchRestartCalls.Dag-Erling Smørgrav2000-07-171-0/+1
* Introduce the (undocumented) variable fetchRestartCalls, which controls whetherDag-Erling Smørgrav2000-07-172-2/+3
* Remove fetchContentType(), which disappeared in the HTTP rewrite.Dag-Erling Smørgrav2000-07-171-1/+0
* #ifdef DEBUG -> #ifndef NDEBUGDag-Erling Smørgrav2000-07-161-2/+2
* Reinsert the MIT copyright, which applies to the base64 code and wasDag-Erling Smørgrav2000-07-161-0/+32
* Fix a bug (misplaced continue) that caused redirects to fail. Lots of codeDag-Erling Smørgrav2000-07-131-16/+29
* Fully document the HTTP authorization feature.Dag-Erling Smørgrav2000-07-121-12/+18
* Extensive rewrite of the HTTP code. The new code is significantly cleaner andDag-Erling Smørgrav2000-07-121-446/+685
* Use fetch_putln()Dag-Erling Smørgrav2000-07-111-11/+5
* Add _fetch_putln()Dag-Erling Smørgrav2000-07-112-6/+30
* Document that basic authorization now kinda works.Dag-Erling Smørgrav2000-07-111-16/+20
* Rework the authorization code.Dag-Erling Smørgrav2000-07-111-78/+83
* Clean up the debugging outputDag-Erling Smørgrav2000-07-112-12/+3
* Free chunks obtained by getaddrinfo(3).Hajimu UMEMOTO2000-07-101-0/+1