OpenBSD CVS

CVS log for src/usr.bin/ssh/sftp-client.h


[BACK] Up to [local] / src / usr.bin / ssh

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.39 / (download) - annotate - [select for diffs], Fri Sep 8 05:56:13 2023 UTC (8 months, 1 week ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, HEAD
Changes since 1.38: +36 -40 lines
Diff to previous 1.38 (colored)

the sftp code was one of my first contributions to OpenSSH and it
shows - the function names are terrible.

Rename do_blah() to sftp_blah() to make them less so.

Completely mechanical except for sftp_stat() and sftp_lstat() which
change from returning a pointer to a static variable (error-prone) to
taking a pointer to a caller-provided receiver.

Revision 1.38 / (download) - annotate - [select for diffs], Mon Sep 19 10:43:12 2022 UTC (19 months, 3 weeks ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2
Changes since 1.37: +10 -1 lines
Diff to previous 1.37 (colored)

sftp client library support for users-groups-by-id@openssh.com;
ok markus@

Revision 1.37 / (download) - annotate - [select for diffs], Fri May 13 06:31:50 2022 UTC (2 years ago) by djm
Branch: MAIN
Changes since 1.36: +9 -8 lines
Diff to previous 1.36 (colored)

arrange for scp, when in sftp mode, to not ftruncate(3) files early

previous behavious of unconditionally truncating the destination file
would cause "scp ~/foo localhost:" and "scp localhost:foo ~/" to
delete all the contents of their destination.

spotted by solene@ sthen@, also bz3431; ok dtucker@

Revision 1.36 / (download) - annotate - [select for diffs], Thu Mar 31 03:07:03 2022 UTC (2 years, 1 month ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_7_1_BASE, OPENBSD_7_1
Changes since 1.35: +4 -1 lines
Diff to previous 1.35 (colored)

add a sftp client "cp" command that supports server-side copying
of files. Useful for this task and for testing the copy-data
extension. Patch from Mike Frysinger; ok dtucker@

Revision 1.35 / (download) - annotate - [select for diffs], Sat Jan 1 01:55:30 2022 UTC (2 years, 4 months ago) by jsg
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

spelling
ok dtucker@

Revision 1.34 / (download) - annotate - [select for diffs], Mon Aug 9 23:47:44 2021 UTC (2 years, 9 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0
Changes since 1.33: +8 -2 lines
Diff to previous 1.33 (colored)

SFTP protocol extension to allow the server to expand ~-prefixed
paths, in particular ~user ones. Allows scp in sftp mode to accept
these paths, like scp in rcp mode does.

prompted by and much discussion deraadt@
ok markus@

Revision 1.33 / (download) - annotate - [select for diffs], Sat Aug 7 00:12:09 2021 UTC (2 years, 9 months ago) by djm
Branch: MAIN
Changes since 1.32: +5 -4 lines
Diff to previous 1.32 (colored)

make scp(1) in SFTP mode follow symlinks like traditional scp(1)
ok markus@

Revision 1.32 / (download) - annotate - [select for diffs], Sat Aug 7 00:08:52 2021 UTC (2 years, 9 months ago) by djm
Branch: MAIN
Changes since 1.31: +6 -1 lines
Diff to previous 1.31 (colored)

make scp(1) in SFTP mode output better match original scp(1) by
suppressing "Retrieving [path]" lines that were emitted to support
the interactive sftp(1) client. ok markus@

Revision 1.31 / (download) - annotate - [select for diffs], Sat Aug 7 00:02:41 2021 UTC (2 years, 9 months ago) by djm
Branch: MAIN
Changes since 1.30: +18 -1 lines
Diff to previous 1.30 (colored)

support for "cross"-loading files/directories, i.e. downloading
from one SFTP server while simultaneously uploading to another.

feedback & ok markus@

Revision 1.30 / (download) - annotate - [select for diffs], Wed Mar 31 22:16:34 2021 UTC (3 years, 1 month ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_9_BASE, OPENBSD_6_9
Changes since 1.29: +12 -1 lines
Diff to previous 1.29 (colored)

Use new limits@openssh.com protocol extension to let the client select
good limits based on what the server supports. Split the download and
upload buffer sizes to allow them to be chosen independently.

In practice (and assuming upgraded sftp/sftp-server at each end), this
increases the download buffer 32->64KiB and the upload buffer
32->255KiB.

Patches from Mike Frysinger; ok dtucker@

Revision 1.29 / (download) - annotate - [select for diffs], Fri Dec 4 02:41:10 2020 UTC (3 years, 5 months ago) by djm
Branch: MAIN
Changes since 1.28: +14 -1 lines
Diff to previous 1.28 (colored)

shuffle a few utility functions into sftp-client.c; from Jakub Jelen

Revision 1.28 / (download) - annotate - [select for diffs], Wed Jan 16 23:23:45 2019 UTC (5 years, 4 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.27: +4 -1 lines
Diff to previous 1.27 (colored)

Add "-h" flag to sftp chown/chgrp/chmod commands to request they do
not follow symlinks. Requires recently-committed lsetstat@openssh.com
extension on the server side.

ok markus@ dtucker@

Revision 1.27 / (download) - annotate - [select for diffs], Fri May 8 06:45:13 2015 UTC (9 years ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9, OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.26: +3 -3 lines
Diff to previous 1.26 (colored)

moar whitespace at eol

Revision 1.26 / (download) - annotate - [select for diffs], Wed Jan 14 13:54:13 2015 UTC (9 years, 4 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.25: +23 -21 lines
Diff to previous 1.25 (colored)

update sftp client and server to new buffer API.
pretty much just mechanical changes; with & ok markus

Revision 1.25 / (download) - annotate - [select for diffs], Mon Apr 21 14:36:16 2014 UTC (10 years ago) by logan
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.24: +3 -3 lines
Diff to previous 1.24 (colored)

Implement sftp upload resume support.

OK from djm@, with input from guenther@, mlarkin@ and
okan@

Revision 1.24 / (download) - annotate - [select for diffs], Thu Oct 17 00:30:13 2013 UTC (10 years, 7 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.23: +9 -5 lines
Diff to previous 1.23 (colored)

fsync@openssh.com protocol extension for sftp-server
client support to allow calling fsync() faster successful transfer
patch mostly by imorgan AT nas.nasa.gov; bz#1798
"fine" markus@ "grumble OK" deraadt@ "doesn't sound bad to me" millert@

Revision 1.23 / (download) - annotate - [select for diffs], Fri Oct 11 02:53:45 2013 UTC (10 years, 7 months ago) by djm
Branch: MAIN
Changes since 1.22: +1 -3 lines
Diff to previous 1.22 (colored)

obsolete comment

Revision 1.22 / (download) - annotate - [select for diffs], Thu Aug 8 05:04:03 2013 UTC (10 years, 9 months ago) by djm
Branch: MAIN
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored)

add a "-l" flag for the rename command to force it to use the silly
standard SSH_FXP_RENAME command instead of the POSIX-rename- like
posix-rename@openssh.com extension.

intended for use in regress tests, so no documentation.

Revision 1.21 / (download) - annotate - [select for diffs], Thu Jul 25 00:56:51 2013 UTC (10 years, 9 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.20: +3 -3 lines
Diff to previous 1.20 (colored)

sftp support for resuming partial downloads; patch mostly by Loganaden
Velvindron/AfriNIC with some tweaks by me; feedback and ok dtucker@
"Just be careful" deraadt@

Revision 1.20 / (download) - annotate - [select for diffs], Sat Dec 4 00:18:01 2010 UTC (13 years, 5 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.19: +4 -1 lines
Diff to previous 1.19 (colored)

add a protocol extension to support a hard link operation. It is
available through the "ln" command in the client. The old "ln"
behaviour of creating a symlink is available using its "-s" option
or through the preexisting "symlink" command; based on a patch from
miklos AT szeredi.hu in bz#1555; ok markus@

Revision 1.19 / (download) - annotate - [select for diffs], Wed Sep 22 22:58:51 2010 UTC (13 years, 7 months ago) by djm
Branch: MAIN
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored)

add an option per-read/write callback to atomicio

factor out bandwidth limiting code from scp(1) into a generic bandwidth
limiter that can be attached using the atomicio callback mechanism

add a bandwidth limit option to sftp(1) using the above

"very nice" markus@

Revision 1.18 / (download) - annotate - [select for diffs], Tue Aug 18 18:36:20 2009 UTC (14 years, 9 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.17: +18 -3 lines
Diff to previous 1.17 (colored)

recursive transfer support for get/put and on the commandline
work mostly by carlosvsilvapt@gmail.com for the Google Summer of Code
with some tweaks by me; "go for it" deraadt@

Revision 1.17 / (download) - annotate - [select for diffs], Sun Jun 8 20:15:29 2008 UTC (15 years, 11 months ago) by dtucker
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.16: +20 -3 lines
Diff to previous 1.16 (colored)

Have the sftp client store the statvfs replies in wire format,
which prevents problems when the server's native sizes exceed the
client's.

Also extends the sizes of the remaining 32bit wire format to 64bit,
they're specified as unsigned long in the standard.

Revision 1.16 / (download) - annotate - [select for diffs], Fri Apr 18 12:32:11 2008 UTC (16 years, 1 month ago) by djm
Branch: MAIN
Changes since 1.15: +5 -1 lines
Diff to previous 1.15 (colored)

introduce sftp extension methods statvfs@openssh.com and
fstatvfs@openssh.com that implement statvfs(2)-like operations,
based on a patch from miklos AT szeredi.hu (bz#1399)

also add a "df" command to the sftp client that uses the
statvfs@openssh.com to produce a df(1)-like display of filesystem
space and inode utilisation

ok markus@

Revision 1.15 / (download) - annotate - [select for diffs], Fri Jan 11 07:22:28 2008 UTC (16 years, 4 months ago) by chl
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.14: +1 -7 lines
Diff to previous 1.14 (colored)

disable unused functions

initially from tobias@, but disabled them by placing them in "#ifdef notyet" which was asked by djm@

ok djm@ tobias@

Revision 1.13.2.1 / (download) - annotate - [select for diffs], Sun Sep 4 18:40:04 2005 UTC (18 years, 8 months ago) by brad
Branch: OPENBSD_3_7
Changes since 1.13: +2 -2 lines
Diff to previous 1.13 (colored) next main 1.14 (colored)

upgrade to OpenSSH 4.2

Revision 1.12.4.2 / (download) - annotate - [select for diffs], Fri Sep 2 03:45:00 2005 UTC (18 years, 8 months ago) by brad
Branch: OPENBSD_3_6
Changes since 1.12.4.1: +2 -2 lines
Diff to previous 1.12.4.1 (colored) to branchpoint 1.12 (colored) next main 1.13 (colored)

upgrade to OpenSSH 4.2

Revision 1.14 / (download) - annotate - [select for diffs], Tue Apr 26 12:59:02 2005 UTC (19 years ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.13: +2 -2 lines
Diff to previous 1.13 (colored)

spelling correction in comment from wiz@netbsd;

Revision 1.12.2.1 / (download) - annotate - [select for diffs], Thu Mar 10 17:15:04 2005 UTC (19 years, 2 months ago) by brad
Branch: OPENBSD_3_5
Changes since 1.12: +3 -3 lines
Diff to previous 1.12 (colored) next main 1.13 (colored)

upgrade to OpenSSH 4.0

Revision 1.12.4.1 / (download) - annotate - [select for diffs], Thu Mar 10 16:28:28 2005 UTC (19 years, 2 months ago) by brad
Branch: OPENBSD_3_6
Changes since 1.12: +3 -3 lines
Diff to previous 1.12 (colored)

upgrade to OpenSSH 4.0

Revision 1.13 / (download) - annotate - [select for diffs], Mon Nov 29 07:41:24 2004 UTC (19 years, 5 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE
Branch point for: OPENBSD_3_7
Changes since 1.12: +3 -3 lines
Diff to previous 1.12 (colored)

Some small fixes from moritz@jodeit.org. ok deraadt@

Revision 1.11.4.1 / (download) - annotate - [select for diffs], Thu Mar 4 18:18:16 2004 UTC (20 years, 2 months ago) by brad
Branch: OPENBSD_3_3
Changes since 1.11: +12 -20 lines
Diff to previous 1.11 (colored) next main 1.12 (colored)

upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8

Revision 1.11.6.1 / (download) - annotate - [select for diffs], Sat Feb 28 03:51:34 2004 UTC (20 years, 2 months ago) by brad
Branch: OPENBSD_3_4
Changes since 1.11: +12 -20 lines
Diff to previous 1.11 (colored) next main 1.12 (colored)

upgrade to OpenSSH 3.8

Revision 1.12 / (download) - annotate - [select for diffs], Tue Feb 17 05:39:51 2004 UTC (20 years, 3 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE, OPENBSD_3_5_BASE
Branch point for: OPENBSD_3_6, OPENBSD_3_5
Changes since 1.11: +12 -20 lines
Diff to previous 1.11 (colored)

switch to license.template for code written by me (belated, I know...)

Revision 1.6.2.3 / (download) - annotate - [select for diffs], Fri Oct 11 14:53:07 2002 UTC (21 years, 7 months ago) by miod
Branch: OPENBSD_3_0
Changes since 1.6.2.2: +1 -4 lines
Diff to previous 1.6.2.2 (colored) to branchpoint 1.6 (colored) next main 1.7 (colored)

Update to OpenSSH 3.5

Revision 1.9.2.2 / (download) - annotate - [select for diffs], Fri Oct 11 14:51:52 2002 UTC (21 years, 7 months ago) by miod
Branch: OPENBSD_3_1
Changes since 1.9.2.1: +1 -4 lines
Diff to previous 1.9.2.1 (colored) to branchpoint 1.9 (colored) next main 1.10 (colored)

Update to OpenSSH 3.5

Revision 1.11 / (download) - annotate - [select for diffs], Wed Sep 11 22:41:50 2002 UTC (21 years, 8 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_3_BASE, OPENBSD_3_2_BASE, OPENBSD_3_2
Branch point for: OPENBSD_3_4, OPENBSD_3_3
Changes since 1.10: +1 -4 lines
Diff to previous 1.10 (colored)

support for short/long listings and globbing in "ls"; ok markus@

Revision 1.6.2.2 / (download) - annotate - [select for diffs], Wed Jun 26 18:22:36 2002 UTC (21 years, 10 months ago) by miod
Branch: OPENBSD_3_0
Changes since 1.6.2.1: +3 -5 lines
Diff to previous 1.6.2.1 (colored) to branchpoint 1.6 (colored)

There was an update to OpenSSH 3.4, and people rejoiced.

Revision 1.9.2.1 / (download) - annotate - [select for diffs], Wed Jun 26 15:30:38 2002 UTC (21 years, 10 months ago) by jason
Branch: OPENBSD_3_1
Changes since 1.9: +3 -5 lines
Diff to previous 1.9 (colored)

Pull in OpenSSH-3.4

Revision 1.10 / (download) - annotate - [select for diffs], Sun Jun 23 09:30:14 2002 UTC (21 years, 10 months ago) by deraadt
Branch: MAIN
Changes since 1.9: +3 -5 lines
Diff to previous 1.9 (colored)

bunch of u_int vs int stuff

Revision 1.5.2.2 / (download) - annotate - [select for diffs], Sat Mar 9 00:20:45 2002 UTC (22 years, 2 months ago) by miod
Branch: OPENBSD_2_9
Changes since 1.5.2.1: +29 -20 lines
Diff to previous 1.5.2.1 (colored) to branchpoint 1.5 (colored) next main 1.6 (colored)

Merge OpenSSH 3.1, keeping /etc as configuration files directory.
(i.e. OpenSSH 3.1 + openbsd29_3.1.patch)

Revision 1.1.2.6 / (download) - annotate - [select for diffs], Fri Mar 8 17:04:43 2002 UTC (22 years, 2 months ago) by brad
Branch: OPENBSD_2_8
Changes since 1.1.2.5: +29 -20 lines
Diff to previous 1.1.2.5 (colored) next main 1.2 (colored)

Merge OpenSSH 3.1.

Revision 1.6.2.1 / (download) - annotate - [select for diffs], Thu Mar 7 17:37:47 2002 UTC (22 years, 2 months ago) by jason
Branch: OPENBSD_3_0
Changes since 1.6: +29 -20 lines
Diff to previous 1.6 (colored)

Update to OpenSSH-3.1 on 3.0-stable branch

Revision 1.9 / (download) - annotate - [select for diffs], Wed Feb 13 00:59:23 2002 UTC (22 years, 3 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE
Branch point for: OPENBSD_3_1
Changes since 1.8: +29 -20 lines
Diff to previous 1.8 (colored)

API cleanup and backwards compat for filexfer v.0 servers; ok markus@

Revision 1.8 / (download) - annotate - [select for diffs], Tue Feb 12 12:32:27 2002 UTC (22 years, 3 months ago) by djm
Branch: MAIN
Changes since 1.7: +3 -3 lines
Diff to previous 1.7 (colored)

Perform multiple overlapping read/write requests in file transfer. Mostly
done by Tobias Ringstrom <tori@ringstrom.mine.nu>; ok markus@

Revision 1.7 / (download) - annotate - [select for diffs], Tue Feb 5 00:00:46 2002 UTC (22 years, 3 months ago) by djm
Branch: MAIN
Changes since 1.6: +4 -4 lines
Diff to previous 1.6 (colored)

Add "-B" option to specify copy buffer length (default 32k); ok markus@

Revision 1.5.2.1 / (download) - annotate - [select for diffs], Thu Sep 27 19:03:55 2001 UTC (22 years, 7 months ago) by jason
Branch: OPENBSD_2_9
Changes since 1.5: +20 -24 lines
Diff to previous 1.5 (colored)

Pull in OpenSSH-2.9.9

Revision 1.1.2.5 / (download) - annotate - [select for diffs], Thu Sep 27 00:15:42 2001 UTC (22 years, 7 months ago) by miod
Branch: OPENBSD_2_8
Changes since 1.1.2.4: +20 -24 lines
Diff to previous 1.1.2.4 (colored)

Pull in OpenSSH 2.9.9 to the 2.8 branch.

Revision 1.6 / (download) - annotate - [select for diffs], Tue Jun 26 06:33:01 2001 UTC (22 years, 10 months ago) by itojun
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE
Branch point for: OPENBSD_3_0
Changes since 1.5: +20 -24 lines
Diff to previous 1.5 (colored)

prototype pedant.  not very creative...
- () -> (void)
- no variable names

Revision 1.1.2.4 / (download) - annotate - [select for diffs], Mon May 7 21:09:34 2001 UTC (23 years ago) by jason
Branch: OPENBSD_2_8
Changes since 1.1.2.3: +4 -4 lines
Diff to previous 1.1.2.3 (colored)

Pull in OpenSSH-2.9 to 2.8 branch.

Revision 1.5 / (download) - annotate - [select for diffs], Thu Apr 5 10:42:52 2001 UTC (23 years, 1 month ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE
Branch point for: OPENBSD_2_9
Changes since 1.4: +4 -4 lines
Diff to previous 1.4 (colored)

fix whitespace: unexpand + trailing spaces.

Revision 1.1.2.3 / (download) - annotate - [select for diffs], Wed Mar 21 19:46:28 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_8
Changes since 1.1.2.2: +29 -6 lines
Diff to previous 1.1.2.2 (colored)

Pull in OpenSSH-2.5.2 for 2.8 branch.

Revision 1.2.2.2 / (download) - annotate - [select for diffs], Wed Mar 21 18:53:04 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.2.2.1: +29 -6 lines
Diff to previous 1.2.2.1 (colored) next main 1.3 (colored)

Pull in OpenSSH-2.5.2 for 2.7 branch.

Revision 1.4 / (download) - annotate - [select for diffs], Fri Mar 16 08:16:18 2001 UTC (23 years, 2 months ago) by djm
Branch: MAIN
Changes since 1.3: +5 -5 lines
Diff to previous 1.3 (colored)

Revise globbing for get/put to be more shell-like. In particular,
"get/put file* directory/" now works. ok markus@

Revision 1.3 / (download) - annotate - [select for diffs], Tue Mar 13 22:42:54 2001 UTC (23 years, 2 months ago) by djm
Branch: MAIN
Changes since 1.2: +15 -1 lines
Diff to previous 1.2 (colored)

sftp client filename globbing for get, put, ch{mod,grp,own}. ok markus@

Revision 1.2.2.1 / (download) - annotate - [select for diffs], Mon Mar 12 15:44:14 2001 UTC (23 years, 2 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.2: +1 -10 lines
Diff to previous 1.2 (colored)

OpenSSH-2.5.1 for 2.7 patch branch

Revision 1.2 / (download) - annotate - [select for diffs], Wed Mar 7 10:11:23 2001 UTC (23 years, 2 months ago) by djm
Branch: MAIN
Branch point for: OPENBSD_2_7
Changes since 1.1: +11 -2 lines
Diff to previous 1.1 (colored)

Support for new draft (draft-ietf-secsh-filexfer-01). New symlink handling
functions and small protocol change.

Revision 1.1.2.2 / (download) - annotate - [select for diffs], Mon Feb 19 17:19:22 2001 UTC (23 years, 3 months ago) by jason
Branch: OPENBSD_2_8
Changes since 1.1.2.1: +0 -0 lines
Diff to previous 1.1.2.1 (colored)

Pull in OpenSSH-2.5.1

Revision 1.1.2.1 / (download) - annotate - [select for diffs], Fri Feb 16 20:13:14 2001 UTC (23 years, 3 months ago) by jason
Branch: OPENBSD_2_8
Changes since 1.1: +1 -1 lines
Diff to previous 1.1 (colored)

Pull in OpenSSH 2.5.0

Revision 1.1 / (download) - annotate - [select for diffs], Sun Feb 4 11:11:54 2001 UTC (23 years, 3 months ago) by djm
Branch: MAIN
Branch point for: OPENBSD_2_8

Basic interactive sftp client; ok theo@

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.