summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/sftp-server (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add a local implementation of BSD realpath() for sftp-server usedjm2019-07-051-2/+2
| | | | | | ahead of OpenBSD's realpath changing to match POSIX; ok deraadt@ (thanks for snaps testing)
* Don't redefine Makefile choices which come correct from bsd.*.mkderaadt2018-07-251-4/+1
| | | | ok markus
* group shared source files (e.g. SRCS_KEX) and allow compilation w/o OPENSSLmarkus2018-01-081-3/+3
| | | | ok djm@
* ssh/lib hasn't worked towards our code-sharing goals for a quit while,deraadt2017-12-101-3/+5
| | | | | | | | | perhaps it is too verbose? Change each */Makefile to specifying exactly what sources that program requires, compiling it seperate. Maybe we'll iterate by sorting those into seperatable chunks, splitting up files which contain common code + server/client specific code, or whatnot. But this isn't one step, or we'd have done it a long time ago.. ok dtucker markus djm
* add missing library dependenciesmarkus2013-07-021-1/+2
|
* support '-h' (human-readable units) for sftp's ls command, just likedjm2010-01-131-1/+3
| | | | ls(1); ok dtucker@
* link sftp-server into sshd; feedback and ok djm@markus2008-02-041-2/+2
|
* Move Buffer bignum functions into their own file, bufbn.c. This means thatdtucker2006-04-181-4/+1
| | | | | sftp and sftp-server (which use the Buffer functions in bufaux.c but not the bignum ones) no longer need to be linked with libcrypto. ok markus@
* log*.c -> log.cmarkus2001-03-031-2/+2
|
* Basic interactive sftp client; ok theo@djm2001-02-041-2/+2
|
* $OpenBSD$niklas2001-01-291-0/+2
|
* cleanup sftp-server implementation:markus2001-01-101-2/+2
| | | | | | | | | | | add buffer_get_int64, buffer_put_int64, GET_64BIT, PUT_64BIT parse SSH2_FILEXFER_ATTR_EXTENDED send SSH2_FX_EOF if readdir returns no more entries reply to SSH2_FXP_EXTENDED messages use #defines from the draft. move #definitions to sftp.h more info: http://www.ietf.org/internet-drafts/draft-ietf-secsh-filexfer-00.txt
* implement a SFTP server. interops with sftp2, scp2 and the windowsmarkus2000-08-311-0/+16
client from ssh.com