The NetBSD Project

CVS log for src/usr.bin/ftp/fetch.c

[BACK] Up to [cvs.NetBSD.org] / src / usr.bin / ftp

Request diff between arbitrary revisions


Default branch: MAIN
Current tag: MAIN


Revision 1.239 / (download) - annotate - [select for diffs], Sun Feb 18 22:29:56 2024 UTC (5 weeks, 3 days ago) by christos
Branch: MAIN
CVS Tags: HEAD
Changes since 1.238: +14 -8 lines
Diff to previous 1.238 (colored) to selected 1.64 (colored)

Add -b <buflen> to specify the buffer size.

Revision 1.238 / (download) - annotate - [select for diffs], Sat Aug 12 07:40:13 2023 UTC (7 months, 2 weeks ago) by mlelstv
Branch: MAIN
Changes since 1.237: +5 -4 lines
Diff to previous 1.237 (colored) to selected 1.64 (colored)

Don't finish downloading an empty file with 'already done' before it is
created locally.

Revision 1.237 / (download) - annotate - [select for diffs], Sun Jul 2 10:02:09 2023 UTC (8 months, 3 weeks ago) by mlelstv
Branch: MAIN
Changes since 1.236: +8 -3 lines
Diff to previous 1.236 (colored) to selected 1.64 (colored)

Fix HTTPS through Proxy.

While a regular HTTP Proxy, requires the absolute URL with protocol
and host part, yyou must only send the relative URL through a
CONNECT tunnel (you are talking to the target server).

Revision 1.236 / (download) - annotate - [select for diffs], Sat Feb 25 12:07:25 2023 UTC (13 months ago) by mlelstv
Branch: MAIN
Changes since 1.235: +41 -4 lines
Diff to previous 1.235 (colored) to selected 1.64 (colored)

Add option sslnoverify to control validation of SSL certificates.
Add netrc processing to fetch-mode (URL on command line) to enable options and autologin
via netrc.
Fix SSL cleanup in some error paths.

Certificate validation is now enabled by default. Set FTPSSLNOVERIFY=1 in environment
or configure a corresponding init macro via netrc to not validate certs (required if
you haven't installed a required CA certificate for OpenSSL).

Discussed with lukem@ on icb.

Revision 1.235 / (download) - annotate - [select for diffs], Sun Sep 11 20:49:27 2022 UTC (18 months, 2 weeks ago) by christos
Branch: MAIN
CVS Tags: netbsd-10-base
Branch point for: netbsd-10
Changes since 1.234: +111 -60 lines
Diff to previous 1.234 (colored) to selected 1.64 (colored)

PR/57003: Handle relative URLs (patch by kim@)

Revision 1.234 / (download) - annotate - [select for diffs], Sun Aug 1 15:29:30 2021 UTC (2 years, 7 months ago) by andvar
Branch: MAIN
Changes since 1.233: +3 -3 lines
Diff to previous 1.233 (colored) to selected 1.64 (colored)

fix typos in word "otherwise".

Revision 1.233 / (download) - annotate - [select for diffs], Tue Jul 6 09:26:47 2021 UTC (2 years, 8 months ago) by christos
Branch: MAIN
Changes since 1.232: +40 -3 lines
Diff to previous 1.232 (colored) to selected 1.64 (colored)

Use raw write(2) instead of fwrite(3) to avoid stream corruption because
of the progress bar interrupts. From RVP.

Revision 1.232 / (download) - annotate - [select for diffs], Sat Jul 11 00:29:38 2020 UTC (3 years, 8 months ago) by lukem
Branch: MAIN
CVS Tags: cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Changes since 1.231: +10 -10 lines
Diff to previous 1.231 (colored) to selected 1.64 (colored)

fetch_url: improve signal handler restoration

Use SIG_ERR not NULL as the indicator that a signal handler
hasn't been changed, so that SIG_DFL (equivalent to NULL)
will be restored.

Fix restoration of SIGQUIT; use the old handler not SIGPIPE's.

Revision 1.231 / (download) - annotate - [select for diffs], Thu Apr 4 00:36:09 2019 UTC (4 years, 11 months ago) by christos
Branch: MAIN
CVS Tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, netbsd-9-base, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, is-mlppp-base, is-mlppp
Branch point for: netbsd-9
Changes since 1.230: +9 -5 lines
Diff to previous 1.230 (colored) to selected 1.64 (colored)

Make fetch_read() return size_t like fread() does. It is bogus to
have one backing implementation that returns different values and
types than the other.  Handle error setting properly; i.e. bail
out if the internal read returned an error. Now we get a proper
error message when the the server resets our connection instead of
a warning that the right failed with an invalid argument.

The server used for testing was:
	http://capeweather.dyndns.org:8080/graphs/3474.png
Which seems to be unreliable :-)

Revision 1.230 / (download) - annotate - [select for diffs], Sun Feb 11 02:51:58 2018 UTC (6 years, 1 month ago) by christos
Branch: MAIN
CVS Tags: phil-wifi-base, pgoyette-compat-merge-20190127, pgoyette-compat-base, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, pgoyette-compat
Branch point for: phil-wifi
Changes since 1.229: +7 -5 lines
Diff to previous 1.229 (colored) to selected 1.64 (colored)

more volatile to appease gcc.

Revision 1.229 / (download) - annotate - [select for diffs], Sat Nov 25 15:39:17 2017 UTC (6 years, 4 months ago) by christos
Branch: MAIN
Changes since 1.228: +10 -8 lines
Diff to previous 1.228 (colored) to selected 1.64 (colored)

Make outfile always allocated, free it to set it to NULL, and don't move it
around.

Revision 1.228 / (download) - annotate - [select for diffs], Wed Feb 15 11:52:11 2017 UTC (7 years, 1 month ago) by nonaka
Branch: MAIN
CVS Tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-20170426, pgoyette-localcount-20170320, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, matt-nb8-mediatek-base, matt-nb8-mediatek, bouyer-socketcan-base1
Branch point for: netbsd-8
Changes since 1.227: +56 -81 lines
Diff to previous 1.227 (colored) to selected 1.64 (colored)

ftp(1): split the auth processing function.

Revision 1.227 / (download) - annotate - [select for diffs], Tue Jan 31 21:05:35 2017 UTC (7 years, 1 month ago) by christos
Branch: MAIN
Changes since 1.226: +8 -2 lines
Diff to previous 1.226 (colored) to selected 1.64 (colored)

Use the first name we requested the http/https URL for, not any name we ended
up with after random redirects.

Revision 1.226 / (download) - annotate - [select for diffs], Thu Dec 15 04:49:15 2016 UTC (7 years, 3 months ago) by nonaka
Branch: MAIN
CVS Tags: pgoyette-localcount-20170107, bouyer-socketcan-base
Branch point for: bouyer-socketcan
Changes since 1.225: +41 -6 lines
Diff to previous 1.225 (colored) to selected 1.64 (colored)

handle proxy authentication correctly.

Revision 1.225 / (download) - annotate - [select for diffs], Mon Oct 17 00:52:53 2016 UTC (7 years, 5 months ago) by christos
Branch: MAIN
CVS Tags: pgoyette-localcount-20161104
Changes since 1.224: +3 -2 lines
Diff to previous 1.224 (colored) to selected 1.64 (colored)

PR/51558: ast@: ftp dumps core after usage message when IPv6 URL lacks a slash.
Initialize variable so that we don't get random behavior on cleanup.

Revision 1.224 / (download) - annotate - [select for diffs], Wed Aug 3 12:33:56 2016 UTC (7 years, 7 months ago) by maya
Branch: MAIN
CVS Tags: pgoyette-localcount-20160806, localcount-20160914
Changes since 1.223: +4 -3 lines
Diff to previous 1.223 (colored) to selected 1.64 (colored)

Do globbing for FTP URLs of the form ftp://... too

ok christos

Revision 1.223 / (download) - annotate - [select for diffs], Mon Apr 4 23:59:41 2016 UTC (7 years, 11 months ago) by christos
Branch: MAIN
CVS Tags: pgoyette-localcount-base, pgoyette-localcount-20160726
Branch point for: pgoyette-localcount
Changes since 1.222: +4 -4 lines
Diff to previous 1.222 (colored) to selected 1.64 (colored)

PR/51043: Yorick Hardy: ftp(1) should use the port number for CONNECT

Revision 1.222 / (download) - annotate - [select for diffs], Fri Mar 18 18:42:25 2016 UTC (8 years ago) by christos
Branch: MAIN
Changes since 1.221: +5 -4 lines
Diff to previous 1.221 (colored) to selected 1.64 (colored)

sprinkle more volatile (distribution build with gcc-5.3)

Revision 1.221 / (download) - annotate - [select for diffs], Fri Feb 5 03:41:05 2016 UTC (8 years, 1 month ago) by nonaka
Branch: MAIN
Changes since 1.220: +4 -2 lines
Diff to previous 1.220 (colored) to selected 1.64 (colored)

Initialize the token match pointer.

Revision 1.220 / (download) - annotate - [select for diffs], Tue Jan 5 11:41:00 2016 UTC (8 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.219: +3 -2 lines
Diff to previous 1.219 (colored) to selected 1.64 (colored)

Fix downloads of local files using file:// URLs

Previously it would error out in copyurlinfo() when copying a NULL port.

Revision 1.219 / (download) - annotate - [select for diffs], Thu Dec 17 20:36:36 2015 UTC (8 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.218: +4 -2 lines
Diff to previous 1.218 (colored) to selected 1.64 (colored)

mark function as only needed with ssl.

Revision 1.218 / (download) - annotate - [select for diffs], Thu Dec 17 17:26:45 2015 UTC (8 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.217: +75 -55 lines
Diff to previous 1.217 (colored) to selected 1.64 (colored)

Split the position/size parsing into a separate function.

Revision 1.217 / (download) - annotate - [select for diffs], Thu Dec 17 17:08:45 2015 UTC (8 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.216: +27 -23 lines
Diff to previous 1.216 (colored) to selected 1.64 (colored)

Simplify and factor out connect message

Revision 1.216 / (download) - annotate - [select for diffs], Thu Dec 17 04:36:56 2015 UTC (8 years, 3 months ago) by nonaka
Branch: MAIN
Changes since 1.215: +37 -77 lines
Diff to previous 1.215 (colored) to selected 1.64 (colored)

- Fix to connect https via proxy.
- Fix ttyout message.

Revision 1.215 / (download) - annotate - [select for diffs], Wed Dec 16 21:11:47 2015 UTC (8 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.214: +246 -52 lines
Diff to previous 1.214 (colored) to selected 1.64 (colored)

PR/50438: NONAKA Kimihiro: ftp(1): CONNECT method support
Please test!

Revision 1.214 / (download) - annotate - [select for diffs], Wed Dec 16 19:17:16 2015 UTC (8 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.213: +601 -488 lines
Diff to previous 1.213 (colored) to selected 1.64 (colored)

more refactoring:
	- introduce authinfo and urlinfo structures
	- split negotiation code out.

Revision 1.213 / (download) - annotate - [select for diffs], Wed Dec 16 01:20:05 2015 UTC (8 years, 3 months ago) by nonaka
Branch: MAIN
Changes since 1.212: +2 -4 lines
Diff to previous 1.212 (colored) to selected 1.64 (colored)

Fix compile failure without WITH_SSL.

>    /tmp/bracket/build/2015.12.15.21.01.27-i386/src/usr.bin/ftp/fetch.c: In function 'fetch_url':
>    /tmp/bracket/build/2015.12.15.21.01.27-i386/src/usr.bin/ftp/fetch.c:823:18: error: 'HTTPS_URL_T' undeclared (first use in this function)
>           urltype == HTTPS_URL_T ? &ssl : NULL);

Revision 1.212 / (download) - annotate - [select for diffs], Tue Dec 15 21:45:21 2015 UTC (8 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.211: +49 -40 lines
Diff to previous 1.211 (colored) to selected 1.64 (colored)

Factor the proxy handling code out.

Revision 1.211 / (download) - annotate - [select for diffs], Tue Dec 15 21:01:27 2015 UTC (8 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.210: +46 -38 lines
Diff to previous 1.210 (colored) to selected 1.64 (colored)

Separate no_proxy handling.

Revision 1.210 / (download) - annotate - [select for diffs], Tue Dec 15 20:49:49 2015 UTC (8 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.209: +88 -83 lines
Diff to previous 1.209 (colored) to selected 1.64 (colored)

Try to factor out some code, this is completely out of control.

Revision 1.209 / (download) - annotate - [select for diffs], Sun Dec 13 14:06:13 2015 UTC (8 years, 3 months ago) by tron
Branch: MAIN
Changes since 1.208: +6 -2 lines
Diff to previous 1.208 (colored) to selected 1.64 (colored)

(Hopefully) fix build without IPv6 support

Revision 1.208 / (download) - annotate - [select for diffs], Fri Dec 11 08:37:31 2015 UTC (8 years, 3 months ago) by tron
Branch: MAIN
Changes since 1.207: +9 -4 lines
Diff to previous 1.207 (colored) to selected 1.64 (colored)

Use the proper format "[IPv6 address]:port" when reporting connection
attempts to IPv6 endpoints.

Revision 1.207 / (download) - annotate - [select for diffs], Sat Sep 12 19:38:42 2015 UTC (8 years, 6 months ago) by wiz
Branch: MAIN
Changes since 1.206: +7 -4 lines
Diff to previous 1.206 (colored) to selected 1.64 (colored)

Add Server Name Indication (SNI) support for https.

Needed for e.g. some github URLs.

Revision 1.206 / (download) - annotate - [select for diffs], Sun Oct 26 16:21:59 2014 UTC (9 years, 5 months ago) by christos
Branch: MAIN
Changes since 1.205: +25 -17 lines
Diff to previous 1.205 (colored) to selected 1.64 (colored)

don't pay attention to special characters if they don't come from the command
line (from jmcneill)

Revision 1.205 / (download) - annotate - [select for diffs], Thu Nov 7 02:06:51 2013 UTC (10 years, 4 months ago) by christos
Branch: MAIN
CVS Tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, netbsd-7-base
Branch point for: netbsd-7
Changes since 1.204: +3 -3 lines
Diff to previous 1.204 (colored) to selected 1.64 (colored)

more volatile for m68k

Revision 1.204 / (download) - annotate - [select for diffs], Sun Nov 3 14:45:50 2013 UTC (10 years, 4 months ago) by christos
Branch: MAIN
Changes since 1.203: +6 -8 lines
Diff to previous 1.203 (colored) to selected 1.64 (colored)

let progressmeter deal with the timeout once we've started transferring.

Revision 1.203 / (download) - annotate - [select for diffs], Sat Nov 2 19:55:47 2013 UTC (10 years, 4 months ago) by christos
Branch: MAIN
Changes since 1.202: +89 -43 lines
Diff to previous 1.202 (colored) to selected 1.64 (colored)

PR/34796: Hauke Fath: ftp does not timeout on http fetches.

Revision 1.202 / (download) - annotate - [select for diffs], Sat Feb 23 13:47:36 2013 UTC (11 years, 1 month ago) by christos
Branch: MAIN
CVS Tags: riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, agc-symver-base, agc-symver
Changes since 1.201: +3 -3 lines
Diff to previous 1.201 (colored) to selected 1.64 (colored)

fix restart from anon ymous

Revision 1.201 / (download) - annotate - [select for diffs], Sat Dec 22 16:58:51 2012 UTC (11 years, 3 months ago) by christos
Branch: MAIN
CVS Tags: yamt-pagecache-base8
Changes since 1.200: +4 -2 lines
Diff to previous 1.200 (colored) to selected 1.64 (colored)

compile without SSL

Revision 1.200 / (download) - annotate - [select for diffs], Sat Dec 22 16:57:09 2012 UTC (11 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.199: +6 -4 lines
Diff to previous 1.199 (colored) to selected 1.64 (colored)

document https support, mentioning certificates are not validated, and obey
https_proxy.

Revision 1.199 / (download) - annotate - [select for diffs], Fri Dec 21 18:07:36 2012 UTC (11 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.198: +87 -36 lines
Diff to previous 1.198 (colored) to selected 1.64 (colored)

PR/47276: Add https support

Revision 1.198 / (download) - annotate - [select for diffs], Wed Jul 4 06:09:37 2012 UTC (11 years, 8 months ago) by is
Branch: MAIN
CVS Tags: yamt-pagecache-base7, yamt-pagecache-base6
Branch point for: tls-maxphys
Changes since 1.197: +4 -3 lines
Diff to previous 1.197 (colored) to selected 1.64 (colored)

As discussed on tech-net@: Don't display expected EHOSTUNREACH for all but
the last connect attempts in terse mode.

Revision 1.197 / (download) - annotate - [select for diffs], Fri Feb 24 19:53:31 2012 UTC (12 years, 1 month ago) by apb
Branch: MAIN
CVS Tags: yamt-pagecache-base5, yamt-pagecache-base4
Changes since 1.196: +3 -3 lines
Diff to previous 1.196 (colored) to selected 1.64 (colored)

subtracting two pointers yields ptrdiff_t, so cast it to int.

Revision 1.196 / (download) - annotate - [select for diffs], Fri Feb 24 19:40:49 2012 UTC (12 years, 1 month ago) by apb
Branch: MAIN
Changes since 1.195: +16 -3 lines
Diff to previous 1.195 (colored) to selected 1.64 (colored)

When given an URL that contains "://" but is not recognised,
print an error message.  Now "ftp https://foo/bar" prints

    ftp: Unsupported URL scheme `https'

instead of

    ftp: Can't lookup `https:ftp': No address associated with hostname
    ftp: Can't connect or login to host `https:?'

Revision 1.195 / (download) - annotate - [select for diffs], Sat Dec 10 05:53:58 2011 UTC (12 years, 3 months ago) by lukem
Branch: MAIN
CVS Tags: netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Branch point for: netbsd-6-1, netbsd-6-0, netbsd-6
Changes since 1.194: +4 -2 lines
Diff to previous 1.194 (colored) to selected 1.64 (colored)

Move determination of socket buffer sizes from startup to the first
time a socket is used, as the previous logic assumed AF_INET sockets
were available (which they may not be in an IPv6-only system).
Per discussion with Maxim Konovalov and the FreeBSD problem 162661.

Revision 1.194 / (download) - annotate - [select for diffs], Fri Sep 16 15:39:26 2011 UTC (12 years, 6 months ago) by joerg
Branch: MAIN
CVS Tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base
Branch point for: yamt-pagecache
Changes since 1.193: +4 -4 lines
Diff to previous 1.193 (colored) to selected 1.64 (colored)

Use __dead

Revision 1.193 / (download) - annotate - [select for diffs], Fri Mar 5 07:41:10 2010 UTC (14 years ago) by lukem
Branch: MAIN
CVS Tags: matt-mips64-premerge-20101231, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Changes since 1.192: +9 -9 lines
Diff to previous 1.192 (colored) to selected 1.64 (colored)

Back to using 'RFC xxxx' instead of 'RFCxxxx'

Revision 1.192 / (download) - annotate - [select for diffs], Thu Mar 4 21:40:53 2010 UTC (14 years ago) by lukem
Branch: MAIN
Changes since 1.191: +6 -16 lines
Diff to previous 1.191 (colored) to selected 1.64 (colored)

Parse HTTP 'Date' entries in the `C' locale rather than the user's.
Fix from [bin/42917] (with minor changes), from KAMADA Ken'ichi.

Revision 1.191 / (download) - annotate - [select for diffs], Mon Aug 17 09:08:16 2009 UTC (14 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: matt-premerge-20091211
Changes since 1.190: +3 -3 lines
Diff to previous 1.190 (colored) to selected 1.64 (colored)

back out previous; luke says:
'@' is a reserved URI char per RFC 3986, use %40

Revision 1.190 / (download) - annotate - [select for diffs], Sun Aug 16 02:49:23 2009 UTC (14 years, 7 months ago) by christos
Branch: MAIN
Changes since 1.189: +3 -3 lines
Diff to previous 1.189 (colored) to selected 1.64 (colored)

use strrchr to find the last @ because we might want the username to contain
user@domain.

Revision 1.189 / (download) - annotate - [select for diffs], Thu Aug 13 17:55:18 2009 UTC (14 years, 7 months ago) by drochner
Branch: MAIN
Changes since 1.188: +4 -3 lines
Diff to previous 1.188 (colored) to selected 1.64 (colored)

avoid NULL dereference in log output if the command line parser
failed to extract a port number from the URL

Revision 1.188 / (download) - annotate - [select for diffs], Mon Jul 13 19:05:41 2009 UTC (14 years, 8 months ago) by roy
Branch: MAIN
Changes since 1.187: +6 -6 lines
Diff to previous 1.187 (colored) to selected 1.64 (colored)

Rename internal getline() function to get_line() so it does
conflict with the soon to be added getline(3) libc function.

Revision 1.187 / (download) - annotate - [select for diffs], Sun Apr 12 10:18:52 2009 UTC (14 years, 11 months ago) by lukem
Branch: MAIN
CVS Tags: jym-xensuspend-nbase, jym-xensuspend-base
Changes since 1.186: +50 -36 lines
Diff to previous 1.186 (colored) to selected 1.64 (colored)

Fix numerous WARNS=4 issues (-Wcast-qual -Wsign-compare).

Revision 1.186 / (download) - annotate - [select for diffs], Sun Apr 12 07:07:41 2009 UTC (14 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.185: +47 -48 lines
Diff to previous 1.185 (colored) to selected 1.64 (colored)

fix -Wshadow issues

Revision 1.185 / (download) - annotate - [select for diffs], Mon Apr 28 20:24:13 2008 UTC (15 years, 11 months ago) by martin
Branch: MAIN
CVS Tags: yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, wrstuden-revivesa, netbsd-5-base, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, hpcarm-cleanup-nbase
Branch point for: netbsd-5-1, netbsd-5, jym-xensuspend
Changes since 1.184: +2 -9 lines
Diff to previous 1.184 (colored) to selected 1.64 (colored)

Remove clause 3 and 4 from TNF licenses

Revision 1.184 / (download) - annotate - [select for diffs], Tue Apr 22 12:59:33 2008 UTC (15 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.183: +30 -26 lines
Diff to previous 1.183 (colored) to selected 1.64 (colored)

Use the service name to getaddrinfo() (along with the host name), so that
features such as DNS Service Discovery have a better chance of working.
Suggested by David Young <dyoung>.

Display the service name in various status & error messages.

Don't getservbyname() the :port component of a URL; RFC 3986 says it's
just an unsigned number, not a service name.

Revision 1.183 / (download) - annotate - [select for diffs], Wed Dec 5 03:46:33 2007 UTC (16 years, 3 months ago) by lukem
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base, matt-armv6-nbase, matt-armv6-base, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-base, cube-autoconf-base, cube-autoconf
Branch point for: yamt-pf42
Changes since 1.182: +26 -23 lines
Diff to previous 1.182 (colored) to selected 1.64 (colored)

DPRINTF() consistency tweaks

Revision 1.182 / (download) - annotate - [select for diffs], Wed Aug 22 23:47:13 2007 UTC (16 years, 7 months ago) by lukem
Branch: MAIN
CVS Tags: matt-armv6-prevmlocking
Branch point for: matt-armv6
Changes since 1.181: +3 -3 lines
Diff to previous 1.181 (colored) to selected 1.64 (colored)

Cast the field precision calculation to int.
Should fix the amd64 build problem noticed by Paul Goyette.

Revision 1.181 / (download) - annotate - [select for diffs], Wed Aug 22 06:51:41 2007 UTC (16 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.180: +39 -11 lines
Diff to previous 1.180 (colored) to selected 1.64 (colored)

Improve parsing of chunked transfer chunks per RFC2616:
* more stringent chunk-size parsing
* ignore optional trailing ';chunk-ext' stuff, instead of barfing
* detect EOF before final \r\n.

Revision 1.180 / (download) - annotate - [select for diffs], Tue Jun 5 00:31:20 2007 UTC (16 years, 9 months ago) by lukem
Branch: MAIN
CVS Tags: matt-mips64-base, matt-mips64, hpcarm-cleanup
Changes since 1.179: +7 -2 lines
Diff to previous 1.179 (colored) to selected 1.64 (colored)

Enforce restriction that (http) proxied URL fetchs don't support
being restarted at this time.
PR #28697.

Revision 1.179 / (download) - annotate - [select for diffs], Thu May 24 05:05:18 2007 UTC (16 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.178: +4 -4 lines
Diff to previous 1.178 (colored) to selected 1.64 (colored)

Display times in RFC2822 form rather than using ctime(3), since
the former is more explicit about the timezone offset.

Revision 1.178 / (download) - annotate - [select for diffs], Tue May 22 05:16:48 2007 UTC (16 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.177: +3 -2 lines
Diff to previous 1.177 (colored) to selected 1.64 (colored)

* main: call tzset() to ensure TZ is setup for other <time.h> functions.
* remotemodtime(): use strptime() to parse the reply.
* fetch_url(): ensure struct tm is zeroed before calling strptime().

Revision 1.177 / (download) - annotate - [select for diffs], Tue May 15 23:54:18 2007 UTC (16 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.176: +26 -22 lines
Diff to previous 1.176 (colored) to selected 1.64 (colored)

* Modify parse_url() to consistently strip the leading `/' off ftp URLs.
  Fixes PR 17617.
* Use 'RFCnnnn' (with leading 0) instead of 'RFC nnnn', to be
  consistent with the style in the RFC index.
* Refer to RFC3916 instead of 1738 or 2732.
* Expand the list of supported RFCs in ftp(1) to contain the document
  name as well.

Revision 1.176 / (download) - annotate - [select for diffs], Thu May 10 12:22:04 2007 UTC (16 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.175: +15 -12 lines
Diff to previous 1.175 (colored) to selected 1.64 (colored)

Switch from fparseln() to the internal getline() when parsing HTTP headers.
Makes ftp a bit more portable (not needing fparseln()) at the expense of not
supporting arbitrary long header lines, which I'm not concerned about
because we don't support header line continuation either...

Revision 1.175 / (download) - annotate - [select for diffs], Tue Apr 17 05:52:03 2007 UTC (16 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.174: +20 -20 lines
Diff to previous 1.174 (colored) to selected 1.64 (colored)

* Implement -s srcaddr; uses srcaddr as the local IP address for all
  connections.
  Based on code in the version of ftp that FreeBSD had before they
  replaced it with lukemftp.
* Move error message handling into ftp_connect() rather than in the
  caller, so that more specific error reporting can occur.
* Improve consistency of various warning and error messages.

Revision 1.174 / (download) - annotate - [select for diffs], Wed Apr 11 00:52:38 2007 UTC (16 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.173: +9 -4 lines
Diff to previous 1.173 (colored) to selected 1.64 (colored)

getpass() can return NULL upon error in some implementations
(as documented in older standards documents, before the API was obsoleted).
Problem observed in tnftp on Solaris by Emil Mikulic.

Revision 1.173 / (download) - annotate - [select for diffs], Wed Dec 13 18:04:08 2006 UTC (17 years, 3 months ago) by christos
Branch: MAIN
Changes since 1.172: +20 -26 lines
Diff to previous 1.172 (colored) to selected 1.64 (colored)

gcc4 does not care about &foo; use volatile instead. From Anon Ymous

Revision 1.172 / (download) - annotate - [select for diffs], Sat Nov 25 16:48:32 2006 UTC (17 years, 4 months ago) by christos
Branch: MAIN
CVS Tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, netbsd-4-base, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-RC1, netbsd-4-0-1-RELEASE, netbsd-4-0, netbsd-4
Changes since 1.171: +3 -3 lines
Diff to previous 1.171 (colored) to selected 1.64 (colored)

spell precede; from Zafer

Revision 1.171 / (download) - annotate - [select for diffs], Fri Sep 22 22:29:25 2006 UTC (17 years, 6 months ago) by elad
Branch: MAIN
Changes since 1.170: +5 -5 lines
Diff to previous 1.170 (colored) to selected 1.64 (colored)

PR/34540: b1ff at fr33 dot b33r dot net: bogus free() in ftp(1)
Applied patch, thanks!

Revision 1.170 / (download) - annotate - [select for diffs], Wed Jul 26 14:28:11 2006 UTC (17 years, 8 months ago) by lukem
Branch: MAIN
CVS Tags: abandoned-netbsd-4-base, abandoned-netbsd-4
Changes since 1.169: +26 -11 lines
Diff to previous 1.169 (colored) to selected 1.64 (colored)

If a file upload (via -u) fails, return an non-zero exit value based on the
index of the file that caused the problem (a la auto-fetch retrieval).
Problem noted by A P Garcia in private email.

Revision 1.169 / (download) - annotate - [select for diffs], Fri Apr 28 20:02:07 2006 UTC (17 years, 11 months ago) by christos
Branch: MAIN
CVS Tags: chap-midi-nbase, chap-midi-base, chap-midi
Changes since 1.168: +3 -2 lines
Diff to previous 1.168 (colored) to selected 1.64 (colored)

Coverity CID 2194: Don't forget to free port.

Revision 1.168 / (download) - annotate - [select for diffs], Fri Apr 28 19:59:44 2006 UTC (17 years, 11 months ago) by christos
Branch: MAIN
Changes since 1.167: +3 -3 lines
Diff to previous 1.167 (colored) to selected 1.64 (colored)

Coverity CID 2195: Free path in all code paths, not some.

Revision 1.167 / (download) - annotate - [select for diffs], Tue Jan 31 20:05:36 2006 UTC (18 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.166: +4 -4 lines
Diff to previous 1.166 (colored) to selected 1.64 (colored)

rename debug to ftp_debug. grr libssh.

Revision 1.166 / (download) - annotate - [select for diffs], Tue Jan 31 20:01:23 2006 UTC (18 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.165: +31 -31 lines
Diff to previous 1.165 (colored) to selected 1.64 (colored)

Rename xfoo() to ftp_foo() to avoid collisions with libssh. Don't ask.

Revision 1.165 / (download) - annotate - [select for diffs], Mon Jan 2 12:30:01 2006 UTC (18 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.164: +3 -2 lines
Diff to previous 1.164 (colored) to selected 1.64 (colored)

recognize 307 redirect code.

Revision 1.164 / (download) - annotate - [select for diffs], Sun Aug 21 16:16:33 2005 UTC (18 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.163: +2 -3 lines
Diff to previous 1.163 (colored) to selected 1.64 (colored)

Don't clear the trailing character on the auth_url() username;
we now use getline() and that newline strips for us.
Problem found & fixed by Mark Davies.

Revision 1.163 / (download) - annotate - [select for diffs], Wed Jun 29 02:31:19 2005 UTC (18 years, 9 months ago) by christos
Branch: MAIN
Changes since 1.162: +34 -52 lines
Diff to previous 1.162 (colored) to selected 1.64 (colored)

Add NO_USAGE and NO_DEBUG so that we can fit in the floppies again.

Revision 1.162 / (download) - annotate - [select for diffs], Fri Jun 10 00:18:46 2005 UTC (18 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.161: +17 -10 lines
Diff to previous 1.161 (colored) to selected 1.64 (colored)

Implement:
    int getline(FILE *stream, char *buf, size_t buflen, const char **errormsg)
	Read a line from the FILE stream into buf/buflen using fgets(), so up
	to buflen-1 chars will be read and the result will be NUL terminated.
	If the line has a trailing newline it will be removed.
	If the line is too long, excess characters will be read until
	newline/EOF/error.
	Various -ve return values indicate different errors, and errormsg
	will be changed to an error description if it's not NULL.

Convert to use getline() instead of fgets() whenever reading user input
to ensure that an overly long input line doesn't leave excess characters
for the next input operation to accidentally use as input.

Zero out the password & account after we've finished with it.

Consistently use getpass(3) (i.e, character echo suppressed) when
reading the account data.  For some reason, historically the "login"
code suppressed echo for Account: yet the "user" command did not!

Display the hostname in the "getaddrinfo failed" warning.

Appease some -Wcast-qual warnings.  Fixing all of these requires
significant code refactoring.  (mmm, legacy code).

Revision 1.161 / (download) - annotate - [select for diffs], Wed Jun 1 12:10:14 2005 UTC (18 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.160: +4 -3 lines
Diff to previous 1.160 (colored) to selected 1.64 (colored)

* Only print the "Trying <address>..." message if verbose and
  there's more than one struct addrinfo in the getaddrinfo() result.
* Don't use non-standard "u_int".

Revision 1.160 / (download) - annotate - [select for diffs], Sun May 29 05:56:56 2005 UTC (18 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.159: +9 -7 lines
Diff to previous 1.159 (colored) to selected 1.64 (colored)

* fetch_ftp(): preserve 'anonftp' across a disconnect() so that multiple
  ftp auto-fetches on the same command line login automatically.
* auto_fetch(): use an initialized volatile int to appease IRIX cc.

Revision 1.159 / (download) - annotate - [select for diffs], Thu May 19 03:05:04 2005 UTC (18 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.158: +5 -6 lines
Diff to previous 1.158 (colored) to selected 1.64 (colored)

Use size_t instead of int where appropriate.

Revision 1.158 / (download) - annotate - [select for diffs], Sat May 14 15:26:43 2005 UTC (18 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.157: +4 -3 lines
Diff to previous 1.157 (colored) to selected 1.64 (colored)

Fix some cast issues highlighted by Scott Reynolds using gcc 4 on OSX.4

Revision 1.157 / (download) - annotate - [select for diffs], Mon Apr 11 01:49:31 2005 UTC (18 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.156: +8 -8 lines
Diff to previous 1.156 (colored) to selected 1.64 (colored)

gratuitous whitespace cleanup (before someone else jumps the gun...)

Revision 1.156 / (download) - annotate - [select for diffs], Sun Apr 10 03:13:23 2005 UTC (18 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.155: +4 -3 lines
Diff to previous 1.155 (colored) to selected 1.64 (colored)

In fetch_url(), don't call freeaddrinfo(res0) too early, as we use pointers
to its contents later in the function.
Problem found by Onno van der Linden.

Revision 1.155 / (download) - annotate - [select for diffs], Wed Jan 12 22:37:41 2005 UTC (19 years, 2 months ago) by lukem
Branch: MAIN
CVS Tags: netbsd-3-base
Branch point for: netbsd-3
Changes since 1.154: +6 -3 lines
Diff to previous 1.154 (colored) to selected 1.64 (colored)

Fix ftp url reget when globs are being used.
Provided by Mathieu Arnold <mat@FreeBSD.org>.

Revision 1.154 / (download) - annotate - [select for diffs], Fri Dec 10 06:44:15 2004 UTC (19 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.153: +90 -79 lines
Diff to previous 1.153 (colored) to selected 1.64 (colored)

* Always decode %xx in a url's user & pass components.
* Only remember {WWW,Proxy}-Authenticate "Basic" challenges; no point
  in tracking any others since ftp doesn't support them.
* Improve the parsing of HTTP responses.

Revision 1.153 / (download) - annotate - [select for diffs], Sat Oct 30 17:36:31 2004 UTC (19 years, 5 months ago) by dsl
Branch: MAIN
Changes since 1.152: +4 -5 lines
Diff to previous 1.152 (colored) to selected 1.64 (colored)

Add (unsigned char) cast to ctype functions

Revision 1.152 / (download) - annotate - [select for diffs], Sun Aug 8 13:52:04 2004 UTC (19 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.151: +4 -3 lines
Diff to previous 1.151 (colored) to selected 1.64 (colored)

Don't base64 encode the trailing NUL in the HTTP basic auth response.
Problem noted by Eric Haszlakiewicz.

Revision 1.151 / (download) - annotate - [select for diffs], Wed Jul 21 00:09:14 2004 UTC (19 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.150: +2 -8 lines
Diff to previous 1.150 (colored) to selected 1.64 (colored)

Slightly rework SIGINT handling; if we're exiting the auto-fetch stuff
and sigint_raised is non-zero, reset the handler for SIGINT to SIG_DFL
and raise(SIGINT) so that the appropriate wait(3) status is setup.
Based on solution proposed by Ognyan Kulev.
This should really fix PR [pkg/26351].

Revision 1.150 / (download) - annotate - [select for diffs], Tue Jul 20 12:46:51 2004 UTC (19 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.149: +48 -43 lines
Diff to previous 1.149 (colored) to selected 1.64 (colored)

Improve parsing of HTTP response headers to be more RFC2616 compliant, and
skip LWS (linear white space; CR, LF, space, tab) and the end of lines and
between the field name and the field value.  This still isn't 100% compliant,
since we don't support "multi line" responses at this time.
This should fix PR [bin/22611] from TAMURA Kent (although I can't easily
find a http server to reproduce the problem against.)

Fix a minor memory leak when parsing HTTP response headers.

Revision 1.149 / (download) - annotate - [select for diffs], Tue Jul 20 11:22:27 2004 UTC (19 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.148: +10 -8 lines
Diff to previous 1.148 (colored) to selected 1.64 (colored)

Don't unnecessarily display a 401/407 error when running with -V.
Fix from PR [bin/18535] by Jeremy Reed.

Revision 1.148 / (download) - annotate - [select for diffs], Tue Jul 20 10:40:21 2004 UTC (19 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.147: +13 -4 lines
Diff to previous 1.147 (colored) to selected 1.64 (colored)

If an ftp auto-fetch transfer is interrupted by SIGINT (usually ^C),
exit with 130 instead of 1 (or rarely, 0).
This allows an ftp auto-fetch in a shell loop to correctly terminate the loop.
Should fix PR [pkg/26351], and possibly others.

Revision 1.147 / (download) - annotate - [select for diffs], Sun Jun 6 01:37:41 2004 UTC (19 years, 9 months ago) by christos
Branch: MAIN
Changes since 1.146: +10 -2 lines
Diff to previous 1.146 (colored) to selected 1.64 (colored)

Save approximately 8K by not including http authentication, extended status
messages and help strings when the appropriate options are set.

Revision 1.146 / (download) - annotate - [select for diffs], Wed Dec 10 12:34:28 2003 UTC (20 years, 3 months ago) by lukem
Branch: MAIN
CVS Tags: netbsd-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-1, netbsd-2-0-base, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE, netbsd-2-0, netbsd-2
Changes since 1.145: +2 -3 lines
Diff to previous 1.145 (colored) to selected 1.64 (colored)

Don't warn about "ignored setsockopt" failures unless debugging is
enabled.  Suggested by Todd Vierling.

Allow empty passwords in ftp://user:@host/file auto-fetch URLs,
per RFC 1738.  Requested by Simon Poole.

Update version.

Revision 1.145 / (download) - annotate - [select for diffs], Thu Dec 4 12:51:18 2003 UTC (20 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.144: +3 -3 lines
Diff to previous 1.144 (colored) to selected 1.64 (colored)

correct URL syntax in comment

Revision 1.144 / (download) - annotate - [select for diffs], Thu Jul 31 05:23:59 2003 UTC (20 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.143: +12 -6 lines
Diff to previous 1.143 (colored) to selected 1.64 (colored)

* $FTPUSERAGENT overrides the HTTP User-Agent header.
  Based on patch from Douwe Kiela.
* Add about:tnftp
* Fix URL in about:netbsd
* Crank version

Revision 1.143 / (download) - annotate - [select for diffs], Sat Jul 26 20:34:13 2003 UTC (20 years, 8 months ago) by salo
Branch: MAIN
Changes since 1.142: +5 -5 lines
Diff to previous 1.142 (colored) to selected 1.64 (colored)

netbsd.org->NetBSD.org

Revision 1.142 / (download) - annotate - [select for diffs], Sat Jul 12 13:30:04 2003 UTC (20 years, 8 months ago) by itojun
Branch: MAIN
Changes since 1.141: +4 -5 lines
Diff to previous 1.141 (colored) to selected 1.64 (colored)

strlcpy

Revision 1.141 / (download) - annotate - [select for diffs], Wed May 14 14:31:00 2003 UTC (20 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.140: +6 -6 lines
Diff to previous 1.140 (colored) to selected 1.64 (colored)

Uppercase URL.

Revision 1.140 / (download) - annotate - [select for diffs], Fri Mar 7 08:13:48 2003 UTC (21 years ago) by grant
Branch: MAIN
Changes since 1.139: +4 -3 lines
Diff to previous 1.139 (colored) to selected 1.64 (colored)

fix a bogus error message when given a HTTP URL with a trailing
slash.

Revision 1.139 / (download) - annotate - [select for diffs], Fri Feb 28 09:54:51 2003 UTC (21 years, 1 month ago) by lukem
Branch: MAIN
Changes since 1.138: +3 -3 lines
Diff to previous 1.138 (colored) to selected 1.64 (colored)

crank dates

Revision 1.138 / (download) - annotate - [select for diffs], Fri Feb 28 04:06:55 2003 UTC (21 years, 1 month ago) by lukem
Branch: MAIN
Changes since 1.137: +3 -3 lines
Diff to previous 1.137 (colored) to selected 1.64 (colored)

add a cast to appease SUNWspro cc.  noted by grant@

Revision 1.137 / (download) - annotate - [select for diffs], Sat Nov 30 03:10:55 2002 UTC (21 years, 4 months ago) by lukem
Branch: MAIN
CVS Tags: fvdl_fs64_base
Changes since 1.136: +2 -3 lines
Diff to previous 1.136 (colored) to selected 1.64 (colored)

tweaks for fparseln(3) move from libutil to libc:
- remove #include <util.h> if nothing else needed it
- remove LDFLAGS+=-lutil if nothing else needed it

Revision 1.136 / (download) - annotate - [select for diffs], Wed Jun 5 10:20:48 2002 UTC (21 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.135: +4 -4 lines
Diff to previous 1.135 (colored) to selected 1.64 (colored)

- when showing the final progress bar, replace "00:00 ETA" with the
  elapsed time.  (suggested by simonb)
- actually display transfer stats after a URL fetch. (bug introduced a
  *long* time ago)
- update copyright & version

Revision 1.135 / (download) - annotate - [select for diffs], Mon May 6 15:03:30 2002 UTC (21 years, 10 months ago) by lukem
Branch: MAIN
CVS Tags: netbsd-1-6-base, netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-6-PATCH002-RELEASE, netbsd-1-6-PATCH002-RC4, netbsd-1-6-PATCH002-RC3, netbsd-1-6-PATCH002-RC2, netbsd-1-6-PATCH002-RC1, netbsd-1-6-PATCH002, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001, netbsd-1-6
Changes since 1.134: +3 -3 lines
Diff to previous 1.134 (colored) to selected 1.64 (colored)

Handle URLs without files correctly (e.g, when using '-o -').
Fix from Anders Dinsen <anders@dinsen.net> in [bin/13768]

Revision 1.134 / (download) - annotate - [select for diffs], Mon May 6 14:36:41 2002 UTC (21 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.133: +7 -4 lines
Diff to previous 1.133 (colored) to selected 1.64 (colored)

- Only send port number in HTTP/1.1 Host: request if port != 80.
  Fixes [bin/15415] from Takahiro Kambe <taca@sky.yamashina.kyoto.jp>
- Fix bad mode passed by mls() to recvrequest().
  Fixes [bin/16642] from <steve.mcclellan@radisys.com>

Revision 1.133 / (download) - annotate - [select for diffs], Fri Feb 1 10:07:54 2002 UTC (22 years, 2 months ago) by itojun
Branch: MAIN
Changes since 1.132: +4 -4 lines
Diff to previous 1.132 (colored) to selected 1.64 (colored)

portnum is unsigned, use %u instead of %d

Revision 1.132 / (download) - annotate - [select for diffs], Wed Dec 26 09:40:15 2001 UTC (22 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.131: +3 -3 lines
Diff to previous 1.131 (colored) to selected 1.64 (colored)

update copyrights

Revision 1.131 / (download) - annotate - [select for diffs], Sun Dec 23 12:23:01 2001 UTC (22 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.130: +3 -3 lines
Diff to previous 1.130 (colored) to selected 1.64 (colored)

Add -4 to force IPv4 and -6 to force IPv6 address usage.
From Hajimu UMEMOTO, via Mike Heffner of FreeBSD.

(FreeBSD has imported NetBSD's ftp as their ftp client;
Mike is sending back some of their local changes).

Revision 1.130 / (download) - annotate - [select for diffs], Thu Nov 29 02:12:33 2001 UTC (22 years, 4 months ago) by lukem
Branch: MAIN
Changes since 1.129: +6 -6 lines
Diff to previous 1.129 (colored) to selected 1.64 (colored)

use u_char instead of char in base64_encode().
problem noticed by Jorgen Lundman in private mail.

Revision 1.129 / (download) - annotate - [select for diffs], Sun Nov 25 11:41:09 2001 UTC (22 years, 4 months ago) by yamt
Branch: MAIN
Changes since 1.128: +12 -4 lines
Diff to previous 1.128 (colored) to selected 1.64 (colored)

don't make broken file with -R option.

Revision 1.128 / (download) - annotate - [select for diffs], Sun Nov 25 11:24:45 2001 UTC (22 years, 4 months ago) by yamt
Branch: MAIN
Changes since 1.127: +34 -18 lines
Diff to previous 1.127 (colored) to selected 1.64 (colored)

handle "*" in Content-Range properly.

Revision 1.127 / (download) - annotate - [select for diffs], Mon Oct 15 05:05:43 2001 UTC (22 years, 5 months ago) by tacha
Branch: MAIN
Changes since 1.126: +7 -3 lines
Diff to previous 1.126 (colored) to selected 1.64 (colored)

If no_proxy condition is true && urltype == FTP_URL_T, use fetch_ftp to retrieve.

Revision 1.126 / (download) - annotate - [select for diffs], Mon Feb 19 23:03:45 2001 UTC (23 years, 1 month ago) by cgd
Branch: MAIN
Changes since 1.125: +3 -3 lines
Diff to previous 1.125 (colored) to selected 1.64 (colored)

convert to use getprogname()

Revision 1.125 / (download) - annotate - [select for diffs], Thu Sep 28 12:29:23 2000 UTC (23 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.124: +5 -5 lines
Diff to previous 1.124 (colored) to selected 1.64 (colored)

explicitly use SOCK_STREAM with socket() instead of res->ai_socktype,
because it appears that linux with glibc doesn't set the latter
correctly after one of getaddrinfo() or getnameinfo().

Revision 1.124 / (download) - annotate - [select for diffs], Mon Aug 28 12:06:11 2000 UTC (23 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.123: +3 -3 lines
Diff to previous 1.123 (colored) to selected 1.64 (colored)

base64_encode should be static. picked up by hp/ux(!) compiler

Revision 1.123 / (download) - annotate - [select for diffs], Sun Aug 27 06:39:25 2000 UTC (23 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.122: +6 -6 lines
Diff to previous 1.122 (colored) to selected 1.64 (colored)

It appears that whilst Apache 1.3.9 incorrectly puts a trailing space
after the chunksize (before the \r\n), Apache 1.3.11 puts *multiple*
trailing spaces after the chunksize. I 'm fairly certain that this is
contrary to RFC 2068 section 3.6, but whatever...
Found by David Brownlee <abs@mono.org>

Revision 1.122 / (download) - annotate - [select for diffs], Sun Aug 6 08:51:22 2000 UTC (23 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.121: +9 -17 lines
Diff to previous 1.121 (colored) to selected 1.64 (colored)

* implement parseport(), which takes a string and attempts to convert
  it to a numeric port number
* use parseport() in parse_url() and hookup()
* don't try and lookup the port number using getaddrinfo(), as it's too hard
  to separate a failed host name lookup from a failed service name lookup.
  this was causing lossage on systems that don't have `http' in services(5)
  (such as solaris), but only crept in when we started using getaddrinfo()
  unconditionally.

Revision 1.121 / (download) - annotate - [select for diffs], Tue Aug 1 22:47:27 2000 UTC (23 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.120: +16 -16 lines
Diff to previous 1.120 (colored) to selected 1.64 (colored)

- rename NO_QUAD to NO_LONG_LONG, QUAD* -> LL* and add ULL* (unsigned)
  equivalents. name change suggested by Klaus Klein <kjk@netbsd.org>
- change defined(BSD4_4) || HAVE_SIN_LEN tests into HAVE_SOCKADDR_SA_LEN,
  and set the latter if BSD4_4 exists

Revision 1.120 / (download) - annotate - [select for diffs], Sun Jul 30 06:10:43 2000 UTC (23 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.119: +2 -68 lines
Diff to previous 1.119 (colored) to selected 1.64 (colored)

* always use getaddrinfo() and getnameinfo() instead of maintaining two code
  paths. (lukemftp will provide replacements for these on older systems)
* rename __USE_SELECT to USE_SELECT
* rename BSD4_4 to HAVE_SIN_LEN
* replace union sockunion {} with struct sockinet {}, and modify the code
  accordingly. this is possibly more portable, as it doesn't rely upon the
  structure alignment within the union for our own stuff.
  (XXX: haven't tested the ipv6 stuff)

Revision 1.119 / (download) - annotate - [select for diffs], Sun Jul 30 04:42:37 2000 UTC (23 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.118: +22 -69 lines
Diff to previous 1.118 (colored) to selected 1.64 (colored)

clean up NO_QUAD support: create helper #defines and use as appropriate:
	#define		NOQUAD		! NOQUAD
	-------		------		- ------
	QUADF		"%ld"		"%lld"
	QUADFP(x)	"%" x "ld"	"%" x "lld"
	QUADT		long		long long
	STRTOL(x,y,z)	strtol(x,y,z)	strtoll(x,y,z)

Revision 1.118 / (download) - annotate - [select for diffs], Tue Jul 18 06:49:21 2000 UTC (23 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.117: +10 -10 lines
Diff to previous 1.117 (colored) to selected 1.64 (colored)

minor knf. call setbinary()/setascii() with non-NULL 2nd arg

Revision 1.117 / (download) - annotate - [select for diffs], Fri Jul 7 15:13:23 2000 UTC (23 years, 8 months ago) by itojun
Branch: MAIN
Changes since 1.116: +3 -3 lines
Diff to previous 1.116 (colored) to selected 1.64 (colored)

errx?/warnx? audit.  do not pass variable alone, use %s.  idea from openbsd

Revision 1.116 / (download) - annotate - [select for diffs], Thu Jun 15 13:08:25 2000 UTC (23 years, 9 months ago) by lukem
Branch: MAIN
CVS Tags: netbsd-1-5-base, netbsd-1-5-RELEASE, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2
Branch point for: netbsd-1-5
Changes since 1.115: +6 -6 lines
Diff to previous 1.115 (colored) to selected 1.64 (colored)

* migrate the SYST parsing from setpeer() into a separate remotesyst().
  call remotesyst() only when login has been successful
  some servers don't let you run SYST until you've successfully logged in.
* in fetch_ftp(), always call setpeer() with autologin disabled, and use
  the following ftp_login() to DTRT.
  this prevents ftp from trying to login a second time if the first autologin
  fails when connecting to a remote site anonymously using autofetch.
* reset unix_proxy and unix_server in cleanuppeer()
* missed a function conversion in the KNF sweep...

Revision 1.115 / (download) - annotate - [select for diffs], Mon Jun 5 09:22:52 2000 UTC (23 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.114: +10 -4 lines
Diff to previous 1.114 (colored) to selected 1.64 (colored)

- fix ai_unmapped() to be a no-op in the !def INET6 case
- display `(-INET6)' at the end of the version string if !def INET6
- clarify in the man page that IPv6 support may not be present (for lukemftp :)

Revision 1.114 / (download) - annotate - [select for diffs], Wed May 31 14:23:58 2000 UTC (23 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.113: +82 -2 lines
Diff to previous 1.113 (colored) to selected 1.64 (colored)

Add support for 'ftp -u url file ...', to upload a list of files to given url.
Mostly based on [bin/10019] by Scott Aaron Bamford <sab@ansic.net>

Revision 1.113 / (download) - annotate - [select for diffs], Mon May 29 14:57:27 2000 UTC (23 years, 10 months ago) by itojun
Branch: MAIN
Changes since 1.112: +6 -2 lines
Diff to previous 1.112 (colored) to selected 1.64 (colored)

convert IPv4 mapped address (::ffff:10.1.1.1) into real IPv4 address
before touching it.  IPv4 mapped address complicates too many things
in FTP protocol handling.

Revision 1.112 / (download) - annotate - [select for diffs], Thu May 25 15:35:51 2000 UTC (23 years, 10 months ago) by itojun
Branch: MAIN
CVS Tags: minoura-xpg4dl-base
Branch point for: minoura-xpg4dl
Changes since 1.111: +25 -4 lines
Diff to previous 1.111 (colored) to selected 1.64 (colored)

do not pass scoped IPv6 address notation on Host: directive, since
scope identifier is local to the originating node.
do not allow scoped IPv6 address notation in URL, if it is via proxy.

Revision 1.111 / (download) - annotate - [select for diffs], Mon May 1 10:35:17 2000 UTC (23 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.110: +24 -49 lines
Diff to previous 1.110 (colored) to selected 1.64 (colored)

convert to ANSI KNF

Revision 1.110 / (download) - annotate - [select for diffs], Mon May 1 09:44:54 2000 UTC (23 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.109: +3 -3 lines
Diff to previous 1.109 (colored) to selected 1.64 (colored)

* Add support for `fget localfile', which reads a list of filenames to
  retrieve from localfile.  Based on work by Darren Reed.
* Crank version.
* Update copyright dates.

Revision 1.109 / (download) - annotate - [select for diffs], Thu Apr 13 08:17:56 2000 UTC (23 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.108: +10 -2 lines
Diff to previous 1.108 (colored) to selected 1.64 (colored)

fixes from cgd:
* sanity check a length (otherwise certain bogus responses can crash ftp)
* allow a transfer encoding type of `binary'; certain firewall vendors
  return this bogus type...

Revision 1.108 / (download) - annotate - [select for diffs], Thu Apr 13 08:13:31 2000 UTC (23 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.107: +6 -6 lines
Diff to previous 1.107 (colored) to selected 1.64 (colored)

s/strtoq/strtoll/ (the latter is standardised)

Revision 1.107 / (download) - annotate - [select for diffs], Thu Mar 9 22:07:59 2000 UTC (24 years ago) by itojun
Branch: MAIN
Changes since 1.106: +6 -4 lines
Diff to previous 1.106 (colored) to selected 1.64 (colored)

make debugging output unambiguous on IPv6 numeric addrs (don't use host:port)

Revision 1.106 / (download) - annotate - [select for diffs], Thu Mar 9 22:01:26 2000 UTC (24 years ago) by itojun
Branch: MAIN
Changes since 1.105: +8 -4 lines
Diff to previous 1.105 (colored) to selected 1.64 (colored)

http://[::1]:8080/ is legal.

send Host: directive with RFC2732 bracket notation for IPv6 numeric,
otherwise "host:port" is ambiguous to servers (clarification will be submitted
as update to RFC2732).

Revision 1.105 / (download) - annotate - [select for diffs], Mon Feb 14 21:46:26 2000 UTC (24 years, 1 month ago) by lukem
Branch: MAIN
Changes since 1.104: +4 -4 lines
Diff to previous 1.104 (colored) to selected 1.64 (colored)

only use getaddrinfo() et al if both NI_NUMERICHOST *and* INET6 are defined...
(allows --disable-ipv6 in lukemftp's configure script to disable this as
well, which is good for testing when it appears getaddrinfo() is borken)

Revision 1.104 / (download) - annotate - [select for diffs], Mon Jan 31 22:01:04 2000 UTC (24 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.103: +3 -3 lines
Diff to previous 1.103 (colored) to selected 1.64 (colored)

define private type `sigfunc' as
	typedef void (*sigfunc) __P((int));
and replace use of sig_t and void (*)(int).

certain other OSes define sig_t differently to that (they add extra arguments),
and it causes problems due to function mismatches, etc...

Revision 1.103 / (download) - annotate - [select for diffs], Tue Jan 25 07:13:45 2000 UTC (24 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.102: +12 -3 lines
Diff to previous 1.102 (colored) to selected 1.64 (colored)

work around bug in apache 1.3.9 which incorrectly puts a trailing
space after the chunksize.
noted by Jun-ichiro itojun Hagino <itojun@itojun.org> in [bin/9096]

Revision 1.102 / (download) - annotate - [select for diffs], Tue Dec 21 13:00:18 1999 UTC (24 years, 3 months ago) by lukem
Branch: MAIN
CVS Tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221
Changes since 1.101: +4 -4 lines
Diff to previous 1.101 (colored) to selected 1.64 (colored)

change references from draft-ietf-ipngwg-url-literal-01.txt to RFC 2732

Revision 1.101 / (download) - annotate - [select for diffs], Sat Dec 11 00:56:13 1999 UTC (24 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.100: +18 -15 lines
Diff to previous 1.100 (colored) to selected 1.64 (colored)

Fix chunked support; probably broke after rate limiting was added.
Problem noticed/debugging assisted by giles lean <giles@nemeton.com.au>.

XXX: rate limiting with chunked xfers might not limit correctly (i.e,
the limit may be too high or too low); fixing this is non trivial,
and will probably occur if i ever rototill fetch_url()

Revision 1.100 / (download) - annotate - [select for diffs], Sun Dec 5 22:54:35 1999 UTC (24 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.99: +3 -2 lines
Diff to previous 1.99 (colored) to selected 1.64 (colored)

move version into separate file to reduce recompilation after version crank.

Revision 1.99 / (download) - annotate - [select for diffs], Sun Dec 5 22:49:27 1999 UTC (24 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.98: +2 -10 lines
Diff to previous 1.98 (colored) to selected 1.64 (colored)

* remove unnecessary freeaddrinfo(res), since res0 was changed to be
  freed earlier in itojun's last commit. fixes [bin/8948].
* remove `const char *reason'; it was being assigned but not used.

Revision 1.98 / (download) - annotate - [select for diffs], Fri Dec 3 06:10:01 1999 UTC (24 years, 4 months ago) by itojun
Branch: MAIN
Changes since 1.97: +34 -26 lines
Diff to previous 1.97 (colored) to selected 1.64 (colored)

fix memory leak in fetch_url (no freeaddrinfo was there).
sync with recent KAME.

Revision 1.97 / (download) - annotate - [select for diffs], Fri Nov 26 21:41:55 1999 UTC (24 years, 4 months ago) by lukem
Branch: MAIN
Changes since 1.96: +28 -25 lines
Diff to previous 1.96 (colored) to selected 1.64 (colored)

* complete_remote(): use remglob("", ...) instead of remglob(".", ...),
  for listings of the current working directory; some ftp servers don't
  like `NLST .'.
  [noted by Giles Lean <giles@nemeton.com.au>]
* recvrequest(): treat remote=="" as remote==NULL when calling command().
  (to support the above change)
* support `[user@]' in `[user@]host' and `[user@]host[:][path]'.
  [based on idea (and initial code) from David Maxwell <david@fundy.ca>]
* `idle' may be invoked without any args
* reformat some comments
* reformat usage string in program and man page
* call updateremotepwd() after successful login, not after successful connect
* always call setsockopt(, IPPROTO_IP, IP_TOS, ) (et al); using #if
  defined(IPPROTO_IP) doesn't work on certain foreign systems where
  enums instead of #defines are used...
  [noted by Matthias Pfaller <leo@dachau.marco.de>]

Revision 1.96 / (download) - annotate - [select for diffs], Thu Nov 11 01:19:11 1999 UTC (24 years, 4 months ago) by lukem
Branch: MAIN
Changes since 1.95: +4 -4 lines
Diff to previous 1.95 (colored) to selected 1.64 (colored)

whitespace nits

Revision 1.95 / (download) - annotate - [select for diffs], Wed Nov 10 07:34:41 1999 UTC (24 years, 4 months ago) by lukem
Branch: MAIN
Changes since 1.94: +123 -13 lines
Diff to previous 1.94 (colored) to selected 1.64 (colored)

- implement restarting file:/// non-proxied http:// URLs (with -R).
- fix a semicolono which stopped file:/// from working

Revision 1.94 / (download) - annotate - [select for diffs], Tue Nov 9 22:03:49 1999 UTC (24 years, 4 months ago) by lukem
Branch: MAIN
Changes since 1.93: +5 -10 lines
Diff to previous 1.93 (colored) to selected 1.64 (colored)

- split the version string into product and version
- be consistent about reporting the version between:
	+ status command
	+ about:version URL fetch
	+ User-agent sent in http requests

Revision 1.93 / (download) - annotate - [select for diffs], Tue Nov 9 07:46:22 1999 UTC (24 years, 4 months ago) by lukem
Branch: MAIN
Changes since 1.92: +3 -3 lines
Diff to previous 1.92 (colored) to selected 1.64 (colored)

when using http/1.1 for unproxied http requests, send the port as a number
(e.g, `:80') instead of a name (e.g, `:http'), because the former is the
supported method that actually works...  noted by hubertf@netbsd.org

Revision 1.92 / (download) - annotate - [select for diffs], Wed Nov 3 07:42:02 1999 UTC (24 years, 5 months ago) by lukem
Branch: MAIN
CVS Tags: comdex-fall-1999-base, comdex-fall-1999
Changes since 1.91: +5 -2 lines
Diff to previous 1.91 (colored) to selected 1.64 (colored)

support `about:version'. also display the version in the output of `status'.

Revision 1.91 / (download) - annotate - [select for diffs], Sun Oct 24 12:31:38 1999 UTC (24 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.90: +24 -23 lines
Diff to previous 1.90 (colored) to selected 1.64 (colored)

new features:
- add `usage'; displays the usage of a command.
  implemented by calling the c_handler() with argc = 0, argv = "funcname".
- add `passive auto'; does the same as $FTPMODE=auto.
- add `set [option value]'; display all options, or set an option to a value.
- add `unset option'; unset an option.
- add getoptionvalue() to retrieve an option's value, and replace a few
  global variables with calls to this.
- implement cleanuppeer(), which resets various bits of state back to
  `disconnected'. call in disconnect() and lostpeer().
- support completing on `options'.
- improve recovery after a SIGINT may have closed the connection.
  XXX: there's still a couple to fix

other stuff:
- various consistency fixes in the man page.
- ensure that the command usage strings in the code and man page match reality.
- mput/mget: check that the connection still exists before each xfer.
- minor cosmetic changes in confirm().
- set code correctly in sizecmd() and modtime()
- don't need \n in err() strings.
- change lostpeer to take an argument (rather than casting (sig_t)lostpeer
  in signal handlers)
- knf and whitespace police.

Revision 1.90 / (download) - annotate - [select for diffs], Tue Oct 12 06:05:00 1999 UTC (24 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.89: +14 -6 lines
Diff to previous 1.89 (colored) to selected 1.64 (colored)

a few user interface and cosmetic tweaks:
* confirm(): move from util.c to cmds.c. display mnemonic string in its prompt.
  add support for `q' (terminate current xfer), `?' (show help list)
* in various signal handlers, output a linefeed only if fromatty.
* if fgets(stdin) returned NULL (i.e, EOF), clearerr(stdin) because you don't
  want future fgets to fail. this is not done for the fgets() in the main
  command loop, since ftp will quit at that point.
* unless ftp is invoked with -a, don't retain the anonftp setting between
  hosts (`ftp somehost:' sets anonftp, but you don't want that to `stick'
  if you close that connection and open a new one).

Revision 1.89 / (download) - annotate - [select for diffs], Sun Oct 10 22:33:55 1999 UTC (24 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.88: +3 -3 lines
Diff to previous 1.88 (colored) to selected 1.64 (colored)

use sigjmp_buf for sigsetjmp(), instead of jmp_buf.
noted by Havard.Eidnes@runit.sintef.no.

Revision 1.88 / (download) - annotate - [select for diffs], Sat Oct 9 03:00:55 1999 UTC (24 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.87: +10 -7 lines
Diff to previous 1.87 (colored) to selected 1.64 (colored)

* use sigsetjmp()/siglongjump() instead of setjmp()/longjmp(); the latter
  don't save the signal mask on some foreign systems.
* ensure signal handlers don't use stdio and do reset errno if they
  don't exit with siglongjmp()
* use a common SIGINT handler for {send,recv}request()

Revision 1.87 / (download) - annotate - [select for diffs], Wed Oct 6 08:57:46 1999 UTC (24 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.86: +12 -8 lines
Diff to previous 1.86 (colored) to selected 1.64 (colored)

more propaganda :)

Revision 1.86 / (download) - annotate - [select for diffs], Tue Oct 5 22:12:34 1999 UTC (24 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.85: +9 -13 lines
Diff to previous 1.85 (colored) to selected 1.64 (colored)

* fetch_url(): specifically set SIGQUIT to psummary before each xfer.
  (work around editline's override)
* minor cleanup of signal handler (along the lines of similar work in
  recvrequest()). the handlers should now be reset everytime the cleanup
  handler was callled.

Revision 1.85 / (download) - annotate - [select for diffs], Tue Oct 5 13:05:40 1999 UTC (24 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.84: +3 -2 lines
Diff to previous 1.84 (colored) to selected 1.64 (colored)

* factor out SIGINFO setting into a handler that is always active (but only
  prints out info if bytes > 0). only set the handler if SIGINFO is defined
* hijack SIGQUIT to be the same as SIGINFO (foreign ports have this, and it's
  annoying to have SIGQUIT dump core on netbsd when it prints info on other
  systems)
* in {recv,send}request(), factor a lot of duplicated code out into a
  `cleanup' section at the end
* rework shell() a bit

Revision 1.84 / (download) - annotate - [select for diffs], Tue Oct 5 01:16:12 1999 UTC (24 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.83: +5 -5 lines
Diff to previous 1.83 (colored) to selected 1.64 (colored)

add TNFi copyright to all files i've done more than a minor amount of work to...

Revision 1.83 / (download) - annotate - [select for diffs], Tue Oct 5 00:54:07 1999 UTC (24 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.82: +2 -4 lines
Diff to previous 1.82 (colored) to selected 1.64 (colored)

enhancments from Marc Horowitz <marc@mit.edu> to improve connection timeouts:
* implement xsignal_restart(), which only sets the SA_RESTART flag if
  specifically requested
* xsignal() is now a wrapper to xsignal_restart(). INFO, USR1, USR2 and WINCH
  are restartable, ALRM, INT, PIPE and QUIT are not.
* improve getreply()'s timeout code to take advantage of the above.

other changes:
* improve wording of how globbing works for `classic' URLs (host:path).
  suggested by John Refling <johnr@imageworks.com> in relation to PRs
  [bin/8519] and [bin/8520]
* always compile in the `edit' command even if NO_EDITCOMPLETE defined.
  it's just a no-op in the latter case, which is more consistent to
  the users.
* always compile in about: support (i.e, remove NO_ABOUT).
  i'm entitled to some vanity in this program...
* clean up some whitespace

Revision 1.82 / (download) - annotate - [select for diffs], Thu Sep 30 23:51:27 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.81: +50 -47 lines
Diff to previous 1.81 (colored) to selected 1.64 (colored)

* In the !NI_NUMERICHOST case (i.e, getaddrinfo() challenged systems), portnum
  should be in host order. found/fixed by Matthias Pfaller <leo@dachau.marco.de>
* parse_url(): improve checking of portnum, and add an extra argument to pass
  back the parsed portnum to the caller (reduces a bit of code duplication)
* Move the KAME/WIDE copyrights after the BSD/TNFi ones. Since there was
  significantly less code added under the former, it's only fair on the latter.

Revision 1.81 / (download) - annotate - [select for diffs], Thu Sep 30 12:18:03 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.80: +4 -2 lines
Diff to previous 1.80 (colored) to selected 1.64 (colored)

* fix initialisation of home[]
* fetch_url(): if path would be NULL, return strdup("")

Revision 1.80 / (download) - annotate - [select for diffs], Wed Sep 29 00:44:01 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.79: +5 -5 lines
Diff to previous 1.79 (colored) to selected 1.64 (colored)

* consistentnly use memset(a,0,c); there were some cases of memset(a,'\0',c)
* remove explicit extern int h_errno; it's in <netdb.h>
* add <termios.h> back to util.c; it contains struct winsize on some systems

Revision 1.79 / (download) - annotate - [select for diffs], Tue Sep 28 07:51:05 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.78: +2 -4 lines
Diff to previous 1.78 (colored) to selected 1.64 (colored)

remove debugging cruft

Revision 1.78 / (download) - annotate - [select for diffs], Tue Sep 28 06:47:41 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.77: +14 -17 lines
Diff to previous 1.77 (colored) to selected 1.64 (colored)

* add new commands:
	lpage	page local files
	pdir	as dir, but through your $PAGER
	pls	as ls, but through your $PAGER
* implement docase() (a la dotrans() et al) and use appropriately, rototilling
  some duplicated code
* globulize(): modify to return a pointer to the strdup()ed result in all cases,
  and hack the code that calls it to take this into account
* replace strcpy() and strncpy() with strlcpy()
* put(), getit(): use some aptly named local vars instead of argv[...]
* delint

Revision 1.77 / (download) - annotate - [select for diffs], Mon Sep 27 23:09:43 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.76: +11 -12 lines
Diff to previous 1.76 (colored) to selected 1.64 (colored)

* idle(): rename to idlecmd(). certain linux distributions have an incompatible
  prototype for idle() in <unistd.h> (which i thought was against namespace
  and sensibility guidelines, but...)
* consistently use xsignal() instead of signal(). we get known behaviour
  in all cases (SA_RESTART), which is good for some borken foreign systems.
* remove signal.h from most files; it's unnecessary now
* fetch_url(): use `long chunksize' instead of ssize_t; it's more portable, and
  we're setting chunksize with strtol() anyway
* xsignal(): only use SA_RESTART if it exists. SunOS 4.x doesn't have it
  but has the inverse (SA_INTERRUPT). the original function i was inspired
  from had this support (lib/signal.c, W. Richard Stevens' `UNP 2nd ed Vol 1').
* remove <termios.h> from util.c; it should be unnecessary now

Revision 1.76 / (download) - annotate - [select for diffs], Sun Sep 26 02:00:12 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.75: +3 -3 lines
Diff to previous 1.75 (colored) to selected 1.64 (colored)

* replace ifdefs against __SVR4 and __linux__ with DIRENT_MISSING_D_NAMLEN;
  it's more portable and more obvious
* remove the mkgmtime() && HAVE_TIMEGM stuff:
	a) why should netbsd have to define HAVE_TIMEGM to compile cleanly?
	b) foreign compiles of ftp should just be linked with working
	   timegm function

a more portable version of this ftp client will be released as a 3rdparty
product; no use polluting our code with half-baked attempts...

Revision 1.75 / (download) - annotate - [select for diffs], Fri Sep 24 14:28:14 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.74: +5 -5 lines
Diff to previous 1.74 (colored) to selected 1.64 (colored)

* use %lld instead of %qd to print out (long long) vars.
  (slightly more portable; e.g, solaris supports this)
* remove some fluff (lint)

Revision 1.74 / (download) - annotate - [select for diffs], Fri Sep 24 06:57:37 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.73: +3 -3 lines
Diff to previous 1.73 (colored) to selected 1.64 (colored)

fix a couple of thinkos in my recent work:
* abort_remote(): replace borken MIN(4,BUFSIZ) with just BUFSIZ; it
  should have been MAX(4,BUFSIZ), but it's probably safe to assume that
  BUFSIZ is at least 3... (fix from simonb)
* auth_url(): use the correct variable when calculating a buffer size.

Revision 1.73 / (download) - annotate - [select for diffs], Wed Sep 22 07:18:33 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Branch point for: wrstuden-devbsize
Changes since 1.72: +22 -13 lines
Diff to previous 1.72 (colored) to selected 1.64 (colored)

* add support for `xferbuf', which sets both `sndbuf' and `rcvbuf'
* document the above three commands
* rototill the way the sndbuf and rcvbuf work. remove resetsockbufsize()
* use the appropriate socket buffer size as the size of the buffer that
  the read()/write() loops use. speeds up things in some cases.

Revision 1.72 / (download) - annotate - [select for diffs], Wed Sep 22 03:01:53 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.71: +17 -12 lines
Diff to previous 1.71 (colored) to selected 1.64 (colored)

replace snprintf() with strlcpy(), strlcat(), or direct assignment
where appropriate. (strlc*() are easier to port to foriegn systems).

XXX; there's still a few snprintf's in the progress meter stuff to convert

Revision 1.71 / (download) - annotate - [select for diffs], Tue Sep 21 13:17:22 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.70: +4 -3 lines
Diff to previous 1.70 (colored) to selected 1.64 (colored)

* protect more of the AF_INET6 stuff with #ifdef INET6 (for portability)
* in the main data moving loops only call the initial gettimeofday() if
  rate throttling is enabled (saves a system call per loop when not
  throttling).

Revision 1.70 / (download) - annotate - [select for diffs], Tue Sep 21 12:57:51 1999 UTC (24 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.69: +3 -3 lines
Diff to previous 1.69 (colored) to selected 1.64 (colored)

add trailing . to message

Revision 1.69 / (download) - annotate - [select for diffs], Tue Sep 14 22:49:14 1999 UTC (24 years, 6 months ago) by mycroft
Branch: MAIN
Changes since 1.68: +3 -3 lines
Diff to previous 1.68 (colored) to selected 1.64 (colored)

warn()->warnx() in a couple of places.

Revision 1.68 / (download) - annotate - [select for diffs], Tue Aug 31 22:05:22 1999 UTC (24 years, 7 months ago) by christos
Branch: MAIN
Changes since 1.67: +8 -2 lines
Diff to previous 1.67 (colored) to selected 1.64 (colored)

The port number might have changed in the proxy case. Re-evaluate it.

Revision 1.67 / (download) - annotate - [select for diffs], Tue Aug 31 21:30:25 1999 UTC (24 years, 7 months ago) by christos
Branch: MAIN
Changes since 1.66: +8 -3 lines
Diff to previous 1.66 (colored) to selected 1.64 (colored)

fix proxy code. strtol() does not work very well for parsing port names.

Revision 1.66 / (download) - annotate - [select for diffs], Sun Aug 29 22:21:57 1999 UTC (24 years, 7 months ago) by christos
Branch: MAIN
Changes since 1.65: +14 -6 lines
Diff to previous 1.65 (colored) to selected 1.64 (colored)

make ftp work again with the traditional gethostbyname/getservbyname
interfaces.

Revision 1.65 / (download) - annotate - [select for diffs], Sun Aug 22 12:49:00 1999 UTC (24 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.64: +32 -15 lines
Diff to previous 1.64 (colored)

fetch_url() fixes:
- just display the hostname:port of the proxy url, rather than the full url.
  this prevents someone `shoulder surfing' a proxy username/password
  in $http_proxy. [suggested by perry]
- compact verbose notes for http fetchs; now displays
    (via host:port, with authorization, with proxy authorization)
  with each component being optional.
(and a couple introduced with the ipv6 mods...)
- don't override host with the canonical name; this prevented fetches from
  http/1.1 virtual hosts from working if the virtual host was a CNAME.
  [noted by bernd]
- call freeaddrinfo() if res was built with getaddrinfo()

Revision 1.64 / (download) - annotate - [selected], Sun Aug 1 12:22:23 1999 UTC (24 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.63: +7 -7 lines
Diff to previous 1.63 (colored)

fix problem with www authentication: len passed to snprintf() for
auth_url() strings was 1 too small. noted by veego@

Revision 1.63 / (download) - annotate - [select for diffs], Mon Jul 12 13:20:34 1999 UTC (24 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.62: +101 -75 lines
Diff to previous 1.62 (colored) to selected 1.64 (colored)

* change fetch_ftp() to be fully rfc 1738 compliant; if the URL contains
  the an empty directory (e.g, between `some' and `path' in
  `ftp://host/some//path'), then execute `CWD ' (without a path).
  This command will probably fail on rfc 959 compliant servers, so
  issue a warning in this case and bail. [noted by cgd].
  (i wonder if the people who wrote rfc 1738 actually realised that this
  requirement appears to contravene the spec for `cwd' in rfc 959 ?)
* replace isurl() with isipv6addr(), and use appropriately. fixes
  auto-login with `classic ftp URLs' (e.g, `ftp somehost:')
* cleanup and rework some of the ipv6 stuff in parse_url()
* prevent potential coredump in fetch_ftp() when parsing `;type=X'
* KNF a few lines
* fix a couple of comments
* cleanup the man page a bit

Revision 1.62 / (download) - annotate - [select for diffs], Tue Jul 6 22:11:37 1999 UTC (24 years, 8 months ago) by tron
Branch: MAIN
Changes since 1.61: +4 -2 lines
Diff to previous 1.61 (colored) to selected 1.64 (colored)

Make FTP downloads via HTTP proxy servers work again.

Revision 1.61 / (download) - annotate - [select for diffs], Sun Jul 4 22:46:20 1999 UTC (24 years, 9 months ago) by itojun
Branch: MAIN
Changes since 1.60: +4 -4 lines
Diff to previous 1.60 (colored) to selected 1.64 (colored)

fix 'junk pointer free' issue.

Revision 1.60 / (download) - annotate - [select for diffs], Fri Jul 2 08:07:41 1999 UTC (24 years, 9 months ago) by itojun
Branch: MAIN
Changes since 1.59: +104 -25 lines
Diff to previous 1.59 (colored) to selected 1.64 (colored)

add dual-stack (IPv4/v6) support.  hope I broke no other part...

Revision 1.59 / (download) - annotate - [select for diffs], Tue Jun 29 10:43:17 1999 UTC (24 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.58: +43 -10 lines
Diff to previous 1.58 (colored) to selected 1.64 (colored)

[fear this; more ftp hacking from lukem :-]

features:
---------
* transfer rate throttling with the new `rate' command. syntax:
	rate direction [max [incr]]
  where direction is `all', `get' or `put'.
  if max is not supplied, the current settings are displayed.
  if max is supplied, then transfers in the given direction will
  be throttled to this value.
  if incr is supplied, the increment for the `on-the-fly' scaling
  will be set to that, otherwise `1024' is used.
  currently implemented for binary get, binary put, and url fetches.
  not yet supported for ascii get or put, or local file copies.
* on-the-fly scaling of the throttle based on signals:
    - SIGUSR1 raises the throttle rate by the increment for that direction
    - SIGUSR2 lowers the throttle rate by the increment for that direction
* -T dir,max[,incr] option to set rate from the command line
* `k', `m', `g' suffix support for bytecounts in the `hash', `rate',
  `rcvbuf' and `sndbuf' commands)

bug fixes and code mods:
------------------------
* fix up ftp_login() so that ruserpass() is always called, even for
  command-line url fetches.
* implement strsuftoi(), which parses a given number into a int with
  suffix support. replaces getsockbufsize()
* implement parserate(), which does the argv parsing for -T and rate
* save and restore errno in signal handlers (may not be necessary, but
  it doesn't hurt)

notes:
------
the rate command has had reasonable testing, but I'd like feedback
if it doesn't do the right thing, especially from people on slower
(i.e, modem) links.
I haven't tested the rate throttle against a http server which does
`transfer-encoding: chunked' because I couldn't find a server to
test against.

Revision 1.58 / (download) - annotate - [select for diffs], Sun Jun 27 01:17:19 1999 UTC (24 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.57: +3 -4 lines
Diff to previous 1.57 (colored) to selected 1.64 (colored)

don't search for trailing `;type=' in a NULL path...
fixes [bin/7800] by Mason Loring Bliss <mason@acheron.middleboro.ma.us>

Revision 1.57 / (download) - annotate - [select for diffs], Thu Jun 24 14:48:35 1999 UTC (24 years, 9 months ago) by christos
Branch: MAIN
Changes since 1.56: +3 -2 lines
Diff to previous 1.56 (colored) to selected 1.64 (colored)

include time.h explicitly, don't depend on other include side-effects

Revision 1.56 / (download) - annotate - [select for diffs], Sun Jun 20 22:07:28 1999 UTC (24 years, 9 months ago) by cgd
Branch: MAIN
Changes since 1.55: +4 -4 lines
Diff to previous 1.55 (colored) to selected 1.64 (colored)

split the "SMALL" #ifdefs into ones for NO_ABOUT, NO_EDITCOMPLETE, and
NO_PROGRESS.  -DSMALL still implies all of those.  progress meter support
isn't necessary for the smallest possible ftp client, but it adds very
little space and makes users' lives much better.  Therefore, it should
be enabled for installation media if at all possible.

Revision 1.55 / (download) - annotate - [select for diffs], Wed Jun 2 02:03:57 1999 UTC (24 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.54: +4 -4 lines
Diff to previous 1.54 (colored) to selected 1.64 (colored)

* fix gate mode to login as `user@realhost' rather than using PASSERVE;
  the latter only seemed to work for TIS Gauntlet and not TIS fwtk.
  thanks to simonb@netbsd.org for testing this. fixes [bin/5556].
* if EOF (e.g, ^D) is entered at a username/password/account prompt which
  happens to use fgets(), exit the login rather than treating EOF as CR.
* don't use the comma operator where separate statements are valid
* always use snprintf to copy stuff into malloced buffers, just in case
  typos creep in and mean that the buffer ends up being overflowed

Revision 1.54 / (download) - annotate - [select for diffs], Wed May 12 11:16:43 1999 UTC (24 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.53: +49 -27 lines
Diff to previous 1.53 (colored) to selected 1.64 (colored)

parse http:// urls (and the $http_proxy variable) for [user:[pass]@]
elements, which are used for the initial authentication attempt (if
requested by the server).  in the case of $http_proxy, use the values
for proxy authentication.

Revision 1.53 / (download) - annotate - [select for diffs], Wed Apr 28 13:35:40 1999 UTC (24 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.52: +190 -36 lines
Diff to previous 1.52 (colored) to selected 1.64 (colored)

* make parsing of ftp:// urls more RFC 1738 compliant;
    - the path is split on `/', and each directory is CWD-ed into separately.
      (from [standards/7484] by Alan Barrett <apb@iafrica.com>)
    - support a trailing `;type=X' suffix, where X is a,i, or d.  (d isn't
      implemented, but it is recognised)
    - the only non-compliant behaviour is that empty directories sections
      (e.g `//') aren't run as `CWD ' - as a lot of ftpds don't like that.
      Instead, treat this as a no-op.
* don't support globbing for ftp urls, since that's technically not
  RFC compliant.
* fix a couple of man-page nits

Revision 1.52 / (download) - annotate - [select for diffs], Mon Mar 22 07:36:40 1999 UTC (25 years ago) by lukem
Branch: MAIN
CVS Tags: netbsd-1-4-base, netbsd-1-4-RELEASE
Branch point for: netbsd-1-4
Changes since 1.51: +94 -82 lines
Diff to previous 1.51 (colored) to selected 1.64 (colored)

* implement -R; restart non-proxied command-line FTP xfers
* fix fetch_ftp() so that hcode parsing is not done for file:// urls
  (a } in the wrong place, and code at the wrong indent level...)
* change outfile to being a global (so it gets correctly reset)
* change parse_url to not remove leading '/' for non ftp urls.
  whilst this is not totally rfc1738 compliant, other code kinda
  assumes this is the case, and it doesn't hurt

Revision 1.51 / (download) - annotate - [select for diffs], Mon Mar 15 08:52:17 1999 UTC (25 years ago) by christos
Branch: MAIN
Changes since 1.50: +8 -2 lines
Diff to previous 1.50 (colored) to selected 1.64 (colored)

Add a few more variables that end up in registers in gcc-2.8.1

Revision 1.50 / (download) - annotate - [select for diffs], Mon Mar 8 04:36:12 1999 UTC (25 years ago) by lukem
Branch: MAIN
Changes since 1.49: +102 -74 lines
Diff to previous 1.49 (colored) to selected 1.64 (colored)

* add url_decode() - `in-place' decode %xx escapes in a given url component
* parse_url()
-   only look for user[:pass] for an ftp url (per rfc1738)
-   strip leading /'s in an ftp url. (almost per rfc 1738)
* fetch_url()
-   decode a copy of the path and use that to build local filenames
-   send port in http Host: header (suggested by cgd@netbsd.org)
* fetch_ftp()
-   url_decode() the user, pass and path
-   fix splitting of path into dir & file (partially from [bin/7073])
-   don't bother caching the last host; it can cause problems when
    using ftp:// transfers, or when the user changes between xfers
* improve documentation of auto-fetched url arguments (especially regarding
  escape sequences in ftp:// urls)
* some whitespace & copyright updates

this should fix [bin/7073] William O Ferry <woferry@warp.wofme.com>,
as well as the metaissues raised in that PR.

Revision 1.49 / (download) - annotate - [select for diffs], Mon Jan 25 23:17:37 1999 UTC (25 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.48: +17 -13 lines
Diff to previous 1.48 (colored) to selected 1.64 (colored)

only print "Requesting..." messages if (verbose)

Revision 1.48 / (download) - annotate - [select for diffs], Sun Jan 24 02:39:30 1999 UTC (25 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.47: +2 -4 lines
Diff to previous 1.47 (colored) to selected 1.64 (colored)

* -v enables verbose & progress, -V disables both
* set setvbuf(ttyout, NULL, _IOLBF, 0) and remove a bunch of fflush(ttyout).
* use fwrite() instead of write() for progressmeter (don't intermix stdio
  with non stdio ops)

Revision 1.47 / (download) - annotate - [select for diffs], Sat Jan 23 15:46:24 1999 UTC (25 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.46: +6 -2 lines
Diff to previous 1.46 (colored) to selected 1.64 (colored)

support -f, which forces a cache flush for http xfers using either
`Pragma: no-cache' (http/1.0) or `Cache-Control: no-cache' (http/1.1)

Revision 1.46 / (download) - annotate - [select for diffs], Tue Jan 5 00:31:20 1999 UTC (25 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.45: +4 -3 lines
Diff to previous 1.45 (colored) to selected 1.64 (colored)

add missing braces (this is C not python...). fixes coredump on solaris

Revision 1.45 / (download) - annotate - [select for diffs], Fri Jan 1 13:26:31 1999 UTC (25 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.44: +65 -16 lines
Diff to previous 1.44 (colored) to selected 1.64 (colored)

support http/1.1's `transfer-encoding: chunked' mode.  [noted by hubertf & bad]

Revision 1.44 / (download) - annotate - [select for diffs], Fri Jan 1 10:00:46 1999 UTC (25 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.43: +191 -17 lines
Diff to previous 1.43 (colored) to selected 1.64 (colored)

* implement auth_url(); given a challenge, decode it, ask the user for
  a response, and return the base64 encoded response. only the `Basic'
  scheme is supported.
* implement base64_enc(), which base64 encodes the given buffer
* add support for http response codes 401 "authorization required" and 407
  "proxy authorization required", using auth_url(). [requested by veego@]

Revision 1.43 / (download) - annotate - [select for diffs], Thu Dec 31 02:10:34 1998 UTC (25 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.42: +9 -3 lines
Diff to previous 1.42 (colored) to selected 1.64 (colored)

use uname(3) to determine info to send in User-agent: header. (suggested by cgd)

Revision 1.42 / (download) - annotate - [select for diffs], Tue Dec 29 14:59:04 1998 UTC (25 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.41: +365 -315 lines
Diff to previous 1.41 (colored) to selected 1.64 (colored)

* major code reorg; gut auto_fetch() and url_get() into a smaller auto_fetch(),
  do_fetch() - which retrieves one file calling fetch_url() or fetch_ftp()
  as necessary.
* don't http redirect more than 5 times for a given url
* send `User-Agent: NetBSD-ftp/1.4' header in http requests. (suggested
  by Christoph Badura <bad@ora.de>)
* cleanup http return code parser, and add support for:
    - 300 `Multiple Choices' - but only if the server returns a
      preferred url in a Location: header because i'm *not* adding
      a html parser to provide the user with options.
    - 305 `Use Proxy [given in Location: header]'. (XXX: not tested)
* support http redirects to non-proxied ftp://urls. (bug discovered by
  Chris Demetriou <cgd@netbsd.org>)
* auto-login to an ftp site (using the FTP protocol) if an ftp://host/dir/
  style url is given and ftp_proxy is set. whilst this is less orthoganol
  with other ftp://host/file urls it's *much* more convenient.

Revision 1.41 / (download) - annotate - [select for diffs], Sun Dec 27 05:49:53 1998 UTC (25 years, 3 months ago) by lukem
Branch: MAIN
Changes since 1.40: +28 -36 lines
Diff to previous 1.40 (colored) to selected 1.64 (colored)

be saner about the method to determine which $proxy to use

Revision 1.40 / (download) - annotate - [select for diffs], Sun Nov 22 06:52:32 1998 UTC (25 years, 4 months ago) by explorer
Branch: MAIN
Changes since 1.39: +3 -2 lines
Diff to previous 1.39 (colored) to selected 1.64 (colored)

Send an Accept: */* header, since some sites require content negotiation.
Grr.

Revision 1.39 / (download) - annotate - [select for diffs], Wed Nov 18 07:24:26 1998 UTC (25 years, 4 months ago) by itohy
Branch: MAIN
Changes since 1.38: +3 -9 lines
Diff to previous 1.38 (colored) to selected 1.64 (colored)

Temporary fix of UTC -> time_t conversion:
1. changed to use timegm(3) on NetBSD and
2. supply alternative code for other Unix-like OSs
(NetBSD ftp shall be portable for some reasons :-).

This fix closes PR #6448.

NOTE: This should be fixed again if a portable UTC to time_t
conversion method is specified in some standards.

Revision 1.38 / (download) - annotate - [select for diffs], Thu Nov 12 22:27:17 1998 UTC (25 years, 4 months ago) by lukem
Branch: MAIN
Changes since 1.37: +12 -4 lines
Diff to previous 1.37 (colored) to selected 1.64 (colored)

* fix previous in a more portable manner (timegm() is not portable/standard).
  use mktime(), and adjust to GMT as per code in util.c::remotemodtime()

Revision 1.37 / (download) - annotate - [select for diffs], Thu Nov 12 18:19:02 1998 UTC (25 years, 4 months ago) by itohy
Branch: MAIN
Changes since 1.36: +3 -3 lines
Diff to previous 1.36 (colored) to selected 1.64 (colored)

HTTP uses UTC time, and changed to use timegm(3) instead of mktime(3)
for conversion of HTTP time.

XXX Unfortunately, timegm(3) is not portable (ex. SunOS 4 have, but 5 not).

Revision 1.36 / (download) - annotate - [select for diffs], Thu Oct 8 14:45:26 1998 UTC (25 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.35: +25 -22 lines
Diff to previous 1.35 (colored) to selected 1.64 (colored)

* hash & progress are mutually exclusive.  [noted by mrg@netbsd.org]
* in autofetch mode, don't attempt to 'cd /' on first xfer (only on
  subsequent xfers), as some ftp daemons don't permit that.
  [noted by dbj@netbsd.org].
  XXX: code could be smarter (but a lot more complicated to boot); this
  works for now.

Revision 1.35 / (download) - annotate - [select for diffs], Tue Sep 1 04:42:49 1998 UTC (25 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.34: +3 -3 lines
Diff to previous 1.34 (colored) to selected 1.64 (colored)

fix handling of port on non-proxied auto-fetch ftp:// urls

Revision 1.34 / (download) - annotate - [select for diffs], Sat Aug 8 11:23:46 1998 UTC (25 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.33: +3 -3 lines
Diff to previous 1.33 (colored) to selected 1.64 (colored)

some compilers bitch about int used when enum expected...

Revision 1.33 / (download) - annotate - [select for diffs], Sat Aug 8 04:40:50 1998 UTC (25 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.32: +5 -11 lines
Diff to previous 1.32 (colored) to selected 1.64 (colored)

* fix skipping of leading / in dir, which may have resulted in
  parsing junk memory (picked up whilst porting to solaris)
* remove superfluous var assignments

Revision 1.32 / (download) - annotate - [select for diffs], Sat Aug 8 04:04:17 1998 UTC (25 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.31: +4 -2 lines
Diff to previous 1.31 (colored) to selected 1.64 (colored)

pull in <sys/time.h> for utimes(), reset port to 0 in auto_fetch loop

Revision 1.31 / (download) - annotate - [select for diffs], Sat Aug 8 03:33:20 1998 UTC (25 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.30: +6 -3 lines
Diff to previous 1.30 (colored) to selected 1.64 (colored)

use utimes() instead of futimes() - the former is more portable

Revision 1.30 / (download) - annotate - [select for diffs], Sat Aug 8 03:06:00 1998 UTC (25 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.29: +3 -2 lines
Diff to previous 1.29 (colored) to selected 1.64 (colored)

technically, you need <sys/stat.h> for struct stat ....

Revision 1.29 / (download) - annotate - [select for diffs], Tue Aug 4 03:35:24 1998 UTC (25 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.28: +10 -16 lines
Diff to previous 1.28 (colored) to selected 1.64 (colored)

cleaner version of fvdl's previous fix, using xstrdup as well

Revision 1.28 / (download) - annotate - [select for diffs], Mon Aug 3 19:10:29 1998 UTC (25 years, 8 months ago) by fvdl
Branch: MAIN
Changes since 1.27: +9 -2 lines
Diff to previous 1.27 (colored) to selected 1.64 (colored)

Avoid using freed memory when using URLs and a proxy.

Revision 1.27 / (download) - annotate - [select for diffs], Mon Aug 3 01:49:25 1998 UTC (25 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.26: +291 -192 lines
Diff to previous 1.26 (colored) to selected 1.64 (colored)

features:
* support $no_proxy, which is a comma or space separated list of
  host[:port] elements for which proxying is to be disabled.
  (asked for by cgd in [bin/5027])
* if $FTPANONPASS is defined, use that as the anon ftp password
  (instead of "`whoami`@")
* allow http URL's without a filename as long as an output file
  is specified.

other stuff:
* implement parse_url(), which breaks up a URL into its bits, and use.
* simplify url_get() and auto_fetch() to use parse_url() and to not
  modify the supplied URL or a copy of it.
* implement xmalloc() and xstrdup(); error-checked malloc()/strdup()
* add more consistency to messages, quoting strings in output as `%s'

Revision 1.26 / (download) - annotate - [select for diffs], Sun Jul 26 12:59:40 1998 UTC (25 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.25: +3 -3 lines
Diff to previous 1.25 (colored) to selected 1.64 (colored)

minor grammar fix

Revision 1.25 / (download) - annotate - [select for diffs], Sun Jul 26 12:58:17 1998 UTC (25 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.24: +312 -193 lines
Diff to previous 1.24 (colored) to selected 1.64 (colored)

* spell `retrieved' correctly!
* parse Last-Modified: HTTP headers for date, and change time of
  retrieved file if parsing succeeded
* support file:/// and file://localhost/ URLs
* in url_get(), re-write byte moving code to consistently use fread()
  and fwrite(), and check errors at end with ferror()
* add about:* easter-egg (#ifndef SMALL :-)

Revision 1.24 / (download) - annotate - [select for diffs], Wed Jul 22 16:06:28 1998 UTC (25 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.23: +94 -72 lines
Diff to previous 1.23 (colored) to selected 1.64 (colored)

* send 'Connection: close' in HTTP/1.1 headers, preventing the
  remove server from using a persistent connection, which speeds
  up such requests.
* support http 301 and 302 redirects
* rewrite guts of url_get() to use fparseln() et al instead of
  read(s,&p,1)...  enables each in the header to be parsed
  as necessary
* rename login to ftp_login, to remove conflict with util.h::login
* cleanup verbose messages during http proxy requests

Revision 1.23 / (download) - annotate - [select for diffs], Fri Jul 10 04:39:04 1998 UTC (25 years, 8 months ago) by thorpej
Branch: MAIN
Changes since 1.22: +5 -3 lines
Diff to previous 1.22 (colored) to selected 1.64 (colored)

Add "sndbuf" and "rcvbuf" commands for setting the socket buffer sizes,
which in turn can allow the use of larger TCP windows.  This is a work in
progress; there is not yet support for specifying global defaults or
user prefrences on a host/network basis.

Revision 1.22 / (download) - annotate - [select for diffs], Thu Jun 4 08:28:35 1998 UTC (25 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.21: +116 -48 lines
Diff to previous 1.21 (colored) to selected 1.64 (colored)

some fixes & enhancements from openbsd's ftp, with extra fixes by me:
* default to passive with active fallback. $FTPMODE modifies this behaviour.
  -A forces active connection.
* support '-o outfile' for auto-fetched files. outfile can be a file,
  `-' (for stdout), or '|command' (to output each file through command).
* support '-r waittime', which retries the connection after waittime seconds
  if it fails.
* fix 'page file' when restart is non-zero.
* try all ip-addresses of a host in a http fetch (as the normal ftp fetch
  does).

XXX: a ``broken pipe'' error sometimes occurs with -o '|command';
i haven't tracked this down yet.

Revision 1.21 / (download) - annotate - [select for diffs], Wed Jun 3 15:50:34 1998 UTC (25 years, 10 months ago) by tv
Branch: MAIN
Changes since 1.20: +9 -6 lines
Diff to previous 1.20 (colored) to selected 1.64 (colored)

Add the ability to work with HTTP-1.1-style virtual hosts, using the
HTTP/1.0 backwards compatible "Host:" field method.

Revision 1.20 / (download) - annotate - [select for diffs], Wed May 20 00:54:26 1998 UTC (25 years, 10 months ago) by christos
Branch: MAIN
Changes since 1.19: +3 -3 lines
Diff to previous 1.19 (colored) to selected 1.64 (colored)

- cast arg to is*() to unsigned char.

Revision 1.19 / (download) - annotate - [select for diffs], Sun Jan 18 22:09:40 1998 UTC (26 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.18: +3 -3 lines
Diff to previous 1.18 (colored) to selected 1.64 (colored)

define MAX_IN_PORT_T and use instead of USHRT_MAX. suggested by cgd@netbsd.org

Revision 1.18 / (download) - annotate - [select for diffs], Sun Jan 18 14:23:35 1998 UTC (26 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.17: +5 -5 lines
Diff to previous 1.17 (colored) to selected 1.64 (colored)

* ensure buffer for username is initialised, so ^D on username prompt
  doesn't use garbage for the username.  from "Soren S. Jorvang" <soren@t.dk>
  in [bin/4559]
* use in_port_t for ports, and USHRT_MAX instead of 0xffff
  (from millert@openbsd.org)
* use `NULL' instead of `(.... *)0' where appropriate.

Revision 1.17 / (download) - annotate - [select for diffs], Sat Nov 1 14:36:55 1997 UTC (26 years, 5 months ago) by lukem
Branch: MAIN
Changes since 1.16: +3 -4 lines
Diff to previous 1.16 (colored) to selected 1.64 (colored)

* in recvrequest(), ignore restart_point unless "RETR"ieving. fixes problems
  where a remote completion or `mget' would confuse the client a `restart'
  had been issued beforehand. now, `restart' is remembered until an operation
  that can actually use it is invoked.
* in sendrequest(), don't reset restart_point upon entry. fixes `restart'
  for `put' operations.
* if `restart' is invoked with no arguments, print current setting instead
  of displaying a usage
* consistently use printf("%qd", (long long)restart_point) when displaying
  restart_point
* use strto[lq]() instead of atol() when parsing `mark' and `restart' values
* remove unnecessary strlen()s when result of previous snprintf() will do
* replace a few malloc()/strcpy()s with strdup()s
* use SECSPERHOUR instead of '3600'

Revision 1.16 / (download) - annotate - [select for diffs], Sun Sep 21 01:06:31 1997 UTC (26 years, 6 months ago) by lukem
Branch: MAIN
CVS Tags: netbsd-1-3-base
Branch point for: netbsd-1-3
Changes since 1.15: +3 -3 lines
Diff to previous 1.15 (colored) to selected 1.64 (colored)

More cleanups from Todd Miller <Todd.Miller@courtesan.com>:
* Use an int, not "union wait".
* Move the "parsed_url" label so that the next statement is not an "else" --
  some ansi C compilers don't like it the old way (SGI's for example).
* Deal with the possibility of getlogin(2) failing.
* Don't error out if the remote server doesn't support the "MDTM" command.

Revision 1.15 / (download) - annotate - [select for diffs], Sat Sep 13 09:05:54 1997 UTC (26 years, 6 months ago) by lukem
Branch: MAIN
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored) to selected 1.64 (colored)

Fixes from Todd Miller <Todd.Miller@courtesan.com>:
* use size_t instead of int in places
* use symbolic constants when using access()

Revision 1.14 / (download) - annotate - [select for diffs], Mon Aug 18 10:20:20 1997 UTC (26 years, 7 months ago) by lukem
Branch: MAIN
Changes since 1.13: +4 -4 lines
Diff to previous 1.13 (colored) to selected 1.64 (colored)

bugs fixed:
* don't interpret '-' or '|' when a local filename is determined from
  the remote name (i.e, in mget, and in get with only one argument).
  This is implemented using an extra argument to recvrequest().
  Fixes a major security hole.
* clean up memory leak when using globulize()
* clean up a couple of comments
* fix wording in TNF copyright

features added:
* support for TIS fwtk gate-ftp servers:
	* read defaults from $FTPSERVER && $FTPSERVERPORT
	* start in gate-ftp mode if invoked as 'gate-ftp'
	* toggle or set with 'gate [host [port]]'

Revision 1.13 / (download) - annotate - [select for diffs], Sun Jul 20 12:49:26 1997 UTC (26 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.12: +24 -21 lines
Diff to previous 1.12 (colored) to selected 1.64 (colored)

Send \r with \n in http requests. Allow "content-length" to be missing.
From [bin/3891] by Krister Walfridsson <cato@ulysses.df.lth.se>

Revision 1.12 / (download) - annotate - [select for diffs], Sun Jul 20 09:45:50 1997 UTC (26 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.11: +32 -15 lines
Diff to previous 1.11 (colored) to selected 1.64 (colored)

* use RCSID() && COPYRIGHT() macros
* cleanup for WARNS=1 (including some ugly '(void)&var' bits wrapped in
  #ifdef __GNUC__ to shut up gcc warnings WRT setjmp/longjmp)
* use strtol() instead of atoi(), and more extensively check result of
  conversion
* use u_int16_t instead of short or int for TCP port addresses

Revision 1.11 / (download) - annotate - [select for diffs], Sun Jun 29 06:34:50 1997 UTC (26 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.10: +22 -8 lines
Diff to previous 1.10 (colored) to selected 1.64 (colored)

Provide a different error message than `invalid url' when an
auto-login ftp URL is used when $ftp_proxy is defined. It now prints:
	Auto-login using ftp URLs isn't supported when using $ftp_proxy
Should solve rest of [bin/3643].

Whilst this is inconsistant with the behaviour when $ftp_proxy isn't
defined, the following constraints apply:
* it's not possible to support ftp URL auto-login when $ftp_proxy is
  defined, since it uses http not ftp, and you can't `login' to http
  servers; fudging this would require a major rewrite of ftp anyway)
* silently ignoring $ftp_proxy and not using it if an ftp auto-login
  URL is given is bad user interface design)
* mrg & others will harrass me if I remove support for autologin ftp URLs
  when $ftp_proxy isn't defined, even though it made the behaviour
  consistant whether $ftp_proxy was set or not.

Revision 1.10 / (download) - annotate - [select for diffs], Fri May 23 18:54:18 1997 UTC (26 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.9: +6 -4 lines
Diff to previous 1.9 (colored) to selected 1.64 (colored)

url_get(): use origline in some messages, simplifying them, and free up copy
of origline before returning. also, previous commit (fix for [bin/3643]) was
inspired by suggested fix in said PR by Alan Barrett <apb@iafrica.com>.

Revision 1.9 / (download) - annotate - [select for diffs], Fri May 23 18:42:36 1997 UTC (26 years, 10 months ago) by lukem
Branch: MAIN
Changes since 1.8: +27 -16 lines
Diff to previous 1.8 (colored) to selected 1.64 (colored)

Actually report why certain URLs are invalid, rather than just exit
with a non-zero exit code. fixes most of [bin/3643].

Revision 1.8 / (download) - annotate - [select for diffs], Mon Apr 21 18:45:47 1997 UTC (26 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.7: +5 -5 lines
Diff to previous 1.7 (colored) to selected 1.64 (colored)

* cleanup parser of ftp://[user:pass@]host[:port]/[dir/][file]. should
  be more robust now. fixes [bin/3520]. (missed this in previous commit msg)
* rename bad_url: to bad_ftp_url:

Revision 1.7 / (download) - annotate - [select for diffs], Mon Apr 21 18:41:03 1997 UTC (26 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.6: +14 -12 lines
Diff to previous 1.6 (colored) to selected 1.64 (colored)

i

Revision 1.6 / (download) - annotate - [select for diffs], Mon Apr 14 09:09:19 1997 UTC (26 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.5: +67 -36 lines
Diff to previous 1.5 (colored) to selected 1.64 (colored)

More enhancements/bugfixes (when will it end?)
* differentiate between being connected, and being logged in
* cleanup some text messages
* support username & password ftp URLs (ftp://user:pass@host/) in non-proxy
  situations; assume proxy supports it for proxy situations.
* cd to / before performing any autofetch transfers
* use strncasecmp in URL parsing. fix from <Todd.Miller@courtesan.com>

Revision 1.5 / (download) - annotate - [select for diffs], Sat Apr 5 03:27:36 1997 UTC (26 years, 11 months ago) by lukem
Branch: MAIN
Changes since 1.4: +52 -31 lines
Diff to previous 1.4 (colored) to selected 1.64 (colored)

* support $ftp_proxy for ftp:// transfers [bin/3245]
* add "more" & "less" as synonyms for "page"
* move editline setup code into controlediting(), and call appropriately.
  only setup setup terminal if going into interactive mode. inspired
  by Todd Miller <todd.miller@courtesan.com>

Revision 1.4 / (download) - annotate - [select for diffs], Sun Mar 16 14:24:18 1997 UTC (27 years ago) by lukem
Branch: MAIN
Changes since 1.3: +4 -4 lines
Diff to previous 1.3 (colored) to selected 1.64 (colored)

Fixes from <Todd.Miller@cs.colorado.edu>, with some cleanup and reworks by me:
* only echo "Passive mode" in verbose mode; scripts that use ftp
  may get unwanted output otherwise
* disable progress bar and modification time preservation when
  retreiving to a non-regular files. fixes progress bar getting in
  way of "get file /dev/tty"
* setup el_init() et al if editing is set, not if fromatty.
  TODO: migrate this to a function, and call if editing is turned on later
	in the session. also implement edit_cleanup if editing is turned off
* call el_set() after setting SIGWINCH handler. This fixes the problem
  when suspending in a non-cbreak shell (e.g, csh) would trash your tty mode.
* reset interactive mode correctly in auto_fetch() mget mode

Revision 1.3 / (download) - annotate - [select for diffs], Thu Mar 13 06:23:15 1997 UTC (27 years ago) by lukem
Branch: MAIN
Changes since 1.2: +55 -23 lines
Diff to previous 1.2 (colored) to selected 1.64 (colored)

Features:
* support remglobbing of auto_fetch arguments
* new flag - '-e'; disable editing
* "page file" == "get file |${PAGER-less}"

Bugfixes/cleanup:
* consistently use a trailing '.' on messages
* code cleanup, including buffer overrun fixes, use puts
  and putchar in places, etc (inspired by OpenBSD mods)
* disable progress bar when local-file is a pipe or '-'
* skip \r in http headers
* fix remote ftpd slash bug more elegantly (so it works with ////)
* abort_remote(): check if cout==NULL before using it. should fix [bin/3273]
* fixed up cosmetic problems when complete_remote() generated errors from the
  remote server (such as "no files found", "login with user and pass", ...)
  done by adding extra argument to remglob(), which is a pointer to an error
  buffer to put messages in rather than printing to stdout.

Revision 1.2 / (download) - annotate - [select for diffs], Sat Feb 1 10:45:00 1997 UTC (27 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.1: +61 -25 lines
Diff to previous 1.1 (colored) to selected 1.64 (colored)

[Yet Another Huge Ftp Commit - hopefully the last for a while,
 barring any more little things people want added ...]

New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
  detected. "- stalled -" is displayed instead of the ETA in this case.
  When the xfer resumes, the time that the xfer was stalled for is
  factored out of the ETA. It is debatable whether this is better than
  not factoring it out, but I like it this way (I.e, if it stalls for 8
  seconds and the ETA was 30 seconds, when it resumes the ETA will still
  be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
  mode the only lines displayed will be a description of the file, and
  the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
  progress bar will rescale automatically.

Bugs fixed:
* progress bar will not use the last character on the line, as this can
  cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
  or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
  This is actually a bug in ftpd(1), where "NLST /" prefixes all names
  with "//", but fixing every ftpd(1) is not an option...

Revision 1.1 / (download) - annotate - [select for diffs], Sun Jan 19 14:19:10 1997 UTC (27 years, 2 months ago) by lukem
Branch: MAIN
Diff to selected 1.64 (colored)

New features:
* Command line editing via editline(3) library.
* Context sensitive command and file completion, including remote files.

Enhancements to auto-fetch feature:
* Support for http:// URLs using the http protocol, including proxy HTTP
  support via $htty_proxy if it's defined.
* The connection is kept open between successive files on the same host.
  (obviously, this does not count for http requests.)
* Return value of ftp is 0 on no error, or the offset in argv[] of the file
  which failed (i.e., argv[x] failed, ftp returns x).
* If the path in an ftp URL or classic format line has a trailing '/',
  cd to the path and enter interactive mode. Fixes [bin/3011], albiet
  requiring the user to help ftp in determining the operation.

Other changes:
* '-P port' works for normal ftp, and is the default for all classic style
  auto-fetch transfers and for ftp URLs that don't specify the port.
  (previously it would just work for the first xfer.)
* Some code moved into separated files along logical divisions.
* Editing and completion can be compiled out with -DSMALLFTP.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>