--timeout option doesn't work when copying between directories

2019-10-31 Thread Marco Nelissen via rsync
It appears that the --timeout only works when using the rsync protocol, but not when copying between two directories. So if the destination is on a network filesystem and the network link is disconnected, rsync will only abort the operation once the underlying system finally reports that the destin

[PATCH v2] Replace mkproto.pl with mkproto.awk

2019-10-31 Thread Ethan Sommer via rsync
This replaces the build dependency on perl with one on awk which is already used throughout the build system and is much more ubiquitous than perl --- Makefile.in | 2 +- mkproto.awk | 39 +++ mkproto.pl | 48 3

Re: [PATCH] Replace mkproto.pl with mkproto.awk

2019-10-31 Thread Ethan Sommer via rsync
> I can't speak for rsync, but nowadays Perl isn't that rare, that a > dependeny on it for build purpose would matter. IMHO. It might not be rare, but it's certainly less universally available than awk, which is preinstalled on pretty much every unix-like OS out there. > There are many flavours of

Re: [PATCH] Replace mkproto.pl with mkproto.awk

2019-10-31 Thread Heiko Schlittermann via rsync
Ethan Sommer via rsync (Do 31 Okt 2019 17:38:17 CET): > This replaces the build dependency on perl with one on awk which is > already used in the build system and is much more ubiquitous than perl I can't speak for rsync, but nowadays Perl isn't that rare, that a dependeny on it for build purpose

rsync CLI protocol documentation

2019-10-31 Thread Mailing List SVR via rsync
Hi all, I would like to implement rsync compatibility in my app. I'm building an ssh server and I want to support rsync. For example I execute this command: 1) rsync -a -e "ssh -p 2022" /home/nicola/test.sh nicola@127.0.0.1:/ and I get this exec command over ssh: 2) rsync --server -

[PATCH] Replace mkproto.pl with mkproto.awk

2019-10-31 Thread Ethan Sommer via rsync
This replaces the build dependency on perl with one on awk which is already used in the build system and is much more ubiquitous than perl --- Makefile.in | 2 +- mkproto.awk | 39 +++ mkproto.pl | 48 3 files c