From: Wayne Davison Date: Fri, 24 Nov 2006 08:38:44 +0000 (+0000) Subject: - Fixed a bug when sending a negative 64-bit number (which may not X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/482f48cca9055325330094991378561b603f988f?hp=482f48cca9055325330094991378561b603f988f - Fixed a bug when sending a negative 64-bit number (which may not be needed, but it at least works right now). - Improved the transmission of 32-bit negative numbers on systems where the 32-bit type is larger than 32 bits. - Changed the sending of 64-bit numbers for protocol 30: we send them in MSB-first order with the number of bytes used in the transmission encoded into the earliest bits. This lets us save transmitted bytes for both small and large numbers. The new method sends from 3 to 9 bytes, the old sent either 4 or 12. ---