Displaying 16 results from an estimated 16 matches similar to: "rsynd-2.5.1 / batch.c patch"
2002 Feb 11
0
RSYNC 2.5.2 type mismatches in batch.c
Platform: OpenVMS Alpha 7.3
Compiler: Compaq C T6.5-002 on OpenVMS Alpha V7.3
Comile flags: /WARN=ENABLE=(LEVEL4, QUESTCODE)
Best guess at UNIX equivalents of above compile flags:
LEVEL4 = All warnings
QUESTCODE = Do LINT processing on source.
-John
wb8tyw@qsl.network
Personal Opinion Only
batch.c
(char *) is being used as a type, when a generic structure is being passed.
(void *) appears
2002 Feb 07
1
Latest version of the batch mode cleanup patch
Here's the latest version of the batch mode cleanup patch.
Index: batch.c
===================================================================
RCS file: /cvsroot/rsync/batch.c,v
retrieving revision 1.12
diff -u -r1.12 batch.c
--- batch.c	24 Jan 2002 08:09:46 -0000	1.12
+++ batch.c	6 Feb 2002 19:47:57 -0000
@@ -8,55 +8,38 @@
 #include "rsync.h"
 #include <time.h>
 
-char
2001 Aug 06
1
merge rsync+ into rsync (was Re: rsync-2.4.7 NEWS file)
> Just curious: what about the rsync+ patch?
Thanks for the reminder.
I've just committed Jos's rsync+ patch onto the
"branch_mbp_rsyncplus_merge" branch.  If it works OK and nobody
screams I will move it across onto the main tree tomorrow or
Wednesday.
I see the patch doesn't add documentation about the new options to the
man page, so we should fix that in the future.
2002 Mar 22
2
Bug in compile of rsync 2.5.4 on Tru64 UNIX V5.1a using cc
Greetings, here is the output of the 'configure' step and
the compile step (using the Compaq cc compiler that comes 
with Tru64 V5.1A. The configure reported success and most of
the compile steps cam through error/warning free except for
the one that stumbled. Can someone help me out here? I am willing
to provide a binary for Tru64 V5.1A if we can swat this bug.
We depend greatly on Rsync
2004 Jun 17
1
[PATCH] make write_batch local
Wayne,
	It's taken a little while for me to get more familiar with the
	code, but I think I've reached a good breakpoint in improving
	batch-mode.  Let me highlight some of the changes in the
	attached patch:
	* --write-batch and --read-batch arguments are no longer passed
	 	from client to server.  This fixes the current problem
		that causes the server threads to die when the client
	
2002 Mar 22
0
Bug in compile of rsync 2.5.4 on Tru64 UNIX V5.1a using cc on AlphaServer 1000 5/300
Hi Paul, your suggestion about batch.c got by the compiler without a
peep and it got much farther along again with complaint from cc until....
[root@hyperion: rsync-2.5.4]#CC=cc; export CC; ./configure
configure: Configuring rsync 2.5.4
checking build system type... alphaev5-dec-osf5.1
checking host system type... alphaev5-dec-osf5.1
checking target system type... alphaev5-dec-osf5.1
checking for
2001 Aug 22
1
@RSYNC EXIT / @RSYNC EOF
tridge and Wayne in particular:
I checked in this patch, which is meant to consolidate the ones from
both of you for handling EOF in a modules list.  The idea is that we
need to handle servers that just close the socket rather than sending
a nice ending token, but we want to keep EOF detection on in general.
(The IO code is such a mess!)
-- 
Martin
Index: clientserver.c
2002 Feb 22
1
Error building CVS on Tru64 UNIX
Latest CVS gives the following error with the Compaq C compiler on
Tru64 UNIX:
  cc -I. -I. -O2 -std1 -DHAVE_CONFIG_H -I./popt -c batch.c -o batch.o
  cc: Error: batch.c, line 408: In this statement, a common type could
  not be determined for the 2nd and 3rd operands ("&s->count" and
  "&int_zero") of a conditional operator. (badcondit)
         
2004 Apr 21
1
rsync-2.6.1pre-1 hang
Hi,
I am running mentioned rsync version in daemon mode on a x86 machine
which is a Gentoo Linux running kernel 2.4.26 and glibc 2.3.3_pre20040207.
During the sync from another machine, the rsync daemon hangs; client receives 
no data and server waits on select() call. when this happens, rsync server process
can only be killed by SIGKILL; no timeout occurs on server side.
ssh is not being used for
2002 Jan 13
1
rsynd-2.5.1 / hlink.c patches
Platform: Compaq OpenVMS Alpha 7.3
Compiler: Compaq C T6.5
The following patch resolves compile problems with the HLINK.C module.
The cast on function argument for the qsort() routine was wrong, and not 
  allowing the compile to complete.
When the function definiton of the hlink_compare() is corrected to have 
the const qualifiers, the cast inside the qsort() function call is no 
longer
2002 Jan 13
0
rsynd-2.5.1 / checksum.c patches
Platform: Compaq OpenVMS Alpha 7.3
Compiler: Compaq C T6.5
The following patch resolves compile problems with the checksum.c module.
The type (char) was being used where the usage indicated either (void) 
or (unsigned char) should be used.
The const qualifier was added to impove compiler efficiency.
There may be more cases in this module where type (char) is being used 
instead of what appears
2019 Oct 16
1
[Bug 14160] New: rsynd in daemon mode should support haproxy proxy protocol
https://bugzilla.samba.org/show_bug.cgi?id=14160
            Bug ID: 14160
           Summary: rsynd in daemon mode should support haproxy proxy
                    protocol
           Product: rsync
           Version: 3.1.3
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5
         Component: core
          Assignee:
2002 Dec 23
3
rsync 2.5.5 SCO Unixware patch
Hello list,
This is a patch to rsync 2.5.5, and it serves two purposes. The small
patches to batch.c, flist.c and log.c simply add "void" to some function
definitions so that all declarations in proto.h have full parameter lists.
	unsigned char read_batch_flags()	OLD
	unsigned char read_batch_flags(void)	NEW
The SCO UNIXWare compiler correctly objected to these functions not
having a
2004 Jul 12
2
[PATCH] Batch-mode rewrite
Wayne,
	Please consider the attached patch.  This applies to the current
CVS, and is independant of patches/local-batch.diff.  As a matter of
fact, I'm sure it would conflict heavily with local-batch.diff.
	This version of batch mode has a couple distinguishing features:
Write-batch records (almost) the entire sender side of the conversation
into one file.  ("Almost" because it has
2002 Jan 13
0
rsynd-2.5.1 / io.c patches
Platform: Compaq OpenVMS Alpha 7.3
Compiler: Compaq C T6.5
The following patch resolves compile problems with the IO.C module.
The (char) type was being used where (void) was more appropriate based 
on the actual use of the code.
The (char) type was also being used where the usage was actually an 
(unsigned char).
const qualifiers were added to improve compile efficiency.
EAGLE> type
2006 Aug 01
0
new to speex's!
Hey all I have been working on a simple VOIP app and have gotten my self
totally confused.
is this the right process to follow? Any tips examples guidence would be
super awesome.
I have my voice data. capturing.
I encoding it so that there are multi speex frames per packet.
on  the reciving end i decode the package i recive.
Yeah it dosnt work at all. :D
this is the code  for the encode.
int