aboutsummaryrefslogtreecommitdiffstats
path: root/sender.c
Commit message (Collapse)AuthorAgeFilesLines
* Changed the call to write_batch_csum_info() to the latest syntax.Wayne Davison2004-01-101-1/+1
|
* Made the types used in the sum_buf and sum_struct structures consistentWayne Davison2004-01-031-4/+4
| | | | with the variables in the code that manipulates these values.
* Use the new f_name_to() call instead of strlcat() an f_name().Wayne Davison2004-01-021-3/+3
|
* Got rid of /* dw */ comments.Wayne Davison2004-01-021-11/+11
|
* Quiet a compiler warning.Wayne Davison2003-12-191-2/+2
|
* New "io_error" variable handling for RERR_VANISHED support.Wayne Davison2003-12-151-10/+14
|
* Sanity check s2length on recept.J.W. Schultz2003-12-061-2/+8
|
* Merged in the security fixes from 2.5.7.Wayne Davison2003-12-061-2/+2
|
* Detect and report when open or opendir succeed but read andJ.W. Schultz2003-09-161-1/+11
| | | | | | readdir fail caused by network filesystems issues and truncated files. Thanks to David Norwood and Michael Brown
* Improved file-related error messages by using the newWayne Davison2003-09-111-3/+3
| | | | full_fname() function.
* Changed "remote_version" to "protocol_version".Wayne Davison2003-09-091-5/+3
|
* Whitespace and indentation cleanup. There is a lot of deepJ.W. Schultz2003-08-151-104/+100
| | | | | indentation mostly due to read_batch but at least it is now consistant.
* Now support dynamic per-file checksum2 size.J.W. Schultz2003-04-101-12/+23
| | | | This pushes protocol version to 27
* Removing vestigial support for protocol versions prior to 15.J.W. Schultz2003-03-311-2/+1
|
* removed log_transfer() It was no more than a conditionalJ.W. Schultz2003-03-251-4/+4
| | | | rprintf() with an unused param.
* long int fix from Nelson BeebeMartin Pool2002-04-091-5/+5
|
* Doc fileMartin Pool2002-04-081-0/+9
|
* More signedness fixes; should be harmless.Martin Pool2002-01-251-2/+2
|
* Patch from Jos Backus -- Fix breakage from dev_t to DEV64_T in batchMartin Pool2002-01-231-2/+3
| | | | | | | | | | mode. Also, drop -f and -F for batch mode: these should be reserved for options that are more commonly used. It also appends a newline to the argvs file and skips adding the source directory to the command line.
* Clean up from rsync+ patch; fix compiler warning.Martin Pool2001-08-311-34/+32
|
* Fix trace message which was missing a parameter.Martin Pool2001-08-151-3/+3
| | | | Drop dead variable introduced in rsync+ patch.
* Merge across rsync+ patch; add a little documentation to the manpage. More ↵Martin Pool2001-08-141-11/+77
| | | | documentation would be better.
* got rid of some unused variablesAndrew Tridgell2000-08-191-2/+0
|
* fix a problem with files > 2GBAndrew Tridgell2000-01-231-4/+4
| | | | (thanks to T.J.Adye@rl.ac.uk)
* use do_open() instead of open() in several places to help the WinXX portAndrew Tridgell1999-10-251-1/+1
| | | | and O_BINARY
* added "dont compress" option with the default setting ofAndrew Tridgell1998-11-201-0/+2
| | | | *.gz *.tgz *.zip *.z *.rpm *.deb
* changed strlcat() and strlcpy() to have the same semantics as theAndrew Tridgell1998-11-141-3/+3
| | | | | | OpenBSD functions of the same name. changed slprintf() to take buffer length rather than buffer length -1
* patch from Alberto Accomazzi <aaccomazzi@cfa.harvard.edu> to addAndrew Tridgell1998-11-031-1/+1
| | | | different exit codes for different conditions.
* Jason told me that's its very important for his site to log exactlyAndrew Tridgell1998-11-021-3/+7
| | | | | how many bytes were needed to be transferred for each file. I added %b and %c log format options to cover this. See the man page for details.
* a change I made yesterday corrupted the displayed filename in someAndrew Tridgell1998-10-291-1/+0
| | | | cases. cosmetic fix.
* and I thought I wasn't going to do any rsync coding for a while ...Andrew Tridgell1998-10-281-4/+9
| | | | | | | Jason Andrade convinced me to add ftpd style logging of transfers, enabled with a "transfer logging" option in rsyncd.conf you can customise the format in log.c
* rsync.c was getting a bit unwieldy so I split the code into 3 modules,Andrew Tridgell1998-07-251-0/+220
for the 3 logical stages of rsync; generator, sender and receiver.