summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/scp.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* highly polished whitespace, mostly fixing spaces-for-tab and baddjm2021-04-031-4/+3
* use the new variant log macros instead of prepending __func__ anddjm2020-10-181-3/+3
* allow -A to explicitly enable agent forwarding in scp and sftp. Thedjm2020-08-031-4/+7
* Fix error message on close(2) and add printf format attributes.millert2020-05-291-4/+7
* another case where a utimes() failure could make scp send adjm2020-05-061-4/+2
* when receving a file in sink(), be careful to send at most a singledjm2020-05-011-37/+59
* run the 2nd ssh with BatchMode for scp -3markus2020-04-301-1/+2
* Replace all calls to signal(2) with a wrapper around sigaction(2).dtucker2020-01-231-11/+11
* Fix potential truncation warning. ok deraadt.dtucker2019-09-091-2/+2
* When system calls indicate an error they return -1, not some arbitraryderaadt2019-06-281-12/+12
* when checking that filenames sent by the server side match what thedjm2019-02-101-12/+270
* add -T to usage();jmc2019-01-271-2/+2
* check in scp client that filenames sent during remote->local directorydjm2019-01-261-9/+30
* Have progressmeter force an update at the beginning and end of eachdtucker2019-01-241-2/+2
* Sanitize scp filenames via snmprintf. To do this we move thedtucker2019-01-231-1/+2
* Add a -J option as a shortcut for -o Proxyjump= to scp(1) and sftp(1)tb2019-01-211-3/+5
* disallow empty incoming filename or ones that refer to the currentdjm2018-11-161-2/+3
* Apply umask to all incoming files and directories not just files.dtucker2018-06-011-1/+3
* lots of typos in comments/docs. Patch from Karsten Weiss after checkingdjm2018-04-101-2/+2
* Disable RemoteCommand and RequestTTY in the ssh session started bydjm2018-02-101-1/+3
* Add helper function for uri handing in scp where a missing pathmillert2017-12-181-11/+36
* Add URI support to ssh, sftp and scp. For example ssh://user@hostmillert2017-10-211-94/+105
* Switch to recallocarray() for a few operations. Both growth and shrinkagederaadt2017-05-311-6/+2
* remove options -12 from usage();jmc2017-05-021-2/+2
* exterminate the -1 flag from scpdjm2017-04-301-1/+5
* Avoid relying on implementation-specific behavior when detectingmillert2017-04-281-6/+13
* Avoid potential signed int overflow when parsing the file size.millert2017-04-271-4/+9
* Add MAXIMUM(), MINIMUM(), and ROUNDUP() to misc.h, then use those definitionsderaadt2016-09-121-4/+3
* To prevent screwing up terminal settings when printing to theschwarze2016-05-251-17/+28
* Improve accuracy of reported transfer speeds by waiting for the ack fromdtucker2016-03-021-5/+5
* pledge "stdio rpath wpath cpath fattr tty proc exec" except for thederaadt2015-11-271-1/+11
* 0 -> NULL when comparing with a char*.mmcc2015-10-161-2/+2
* rename xrealloc() to xreallocarray() since it follows that form.deraadt2015-04-241-2/+2
* Replace <sys/param.h> with <limits.h> and other less dirty headers wherederaadt2015-01-161-4/+5
* when copying local->remote fails during read, don't send uninitialiseddjm2014-06-241-3/+7
* unsigned casts for ctype macros where neccessaryderaadt2013-11-201-3/+3
* improved time_t overflow check suggested by guenther@djm2013-06-221-3/+5
* make this -Wsign-compare clean after time_t conversiondjm2013-06-211-3/+3
* Handle time_t values as long long's when formatting them and whenguenther2013-06-171-25/+38
* use MAXPATHLEN for buffer size instead of fixed value. ok markusdtucker2013-06-041-2/+2
* Replace S_IWRITE, which isn't standardized, with S_IWUSR, which is. Patchdtucker2013-06-011-2/+2
* bye, bye xfree(); ok markus@djm2013-05-171-12/+10
* Fix some "unused result" warnings found via clang and -portable. ok markus@dtucker2013-05-161-2/+2
* suppress adding '--' to remote commandlines when the first argumentdjm2011-09-091-5/+9
* scp.1: grammer fixjmc2010-12-091-2/+2
* add a new -3 option to scp: Copies between two remote hosts aremarkus2010-12-081-3/+86
* Pass through ssh command-line flags and options when doing remote-remotedjm2010-11-261-10/+22
* add an option per-read/write callback to atomiciodjm2010-09-221-99/+22
* Fix a longstanding problem where if you suspend scp at themillert2010-07-011-1/+19
* When passing user-controlled options with arguments to other programs,guenther2009-12-201-7/+14