summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/scp.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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
* spelling in comment; ok djm@stevesk2008-10-101-2/+2
* Prevent -Wsign-compare warnings on LP64 systems. bz #1192, ok deraadt@dtucker2008-06-131-3/+8
* If scp -p encounters a pre-epoch timestamp, use the epoch which isdtucker2008-01-011-3/+9
* factor out network read/write into an atomicio()-like function, and use itdjm2007-10-241-27/+63
* the ellipsis is not an optional argument; while here, sync the usagesobrado2007-08-061-2/+2
* don't ftruncate() non-regular files; bz#1236 reported by wood AT xmission.com;djm2007-06-131-2/+3
* Encode filename with strnvis if the name contains a newline (which can'tdtucker2007-06-121-7/+7
* make scp try to skip FIFOs rather than blocking when nothing is listening.djm2007-06-121-2/+3
* fix detection of whether we should show progress meter or not: scpdjm2007-01-221-2/+2
* almost entirely get rid of the culture of ".h files that include .h files"deraadt2006-08-031-4/+3