search for: rerr_timeout

Displaying 5 results from an estimated 5 matches for "rerr_timeout".

2005 Mar 15
0
[Bug 2455] New: rsync --daemon segfaults if "log file = <file>" dir does not exist
...2.6.3_jdb/doc diff -c rsync-2.6.3/errcode.h rsync-2.6.3_jdb/errcode.h *** rsync-2.6.3/errcode.h Mon Dec 15 08:04:14 2003 --- rsync-2.6.3_jdb/errcode.h Tue Mar 15 19:36:28 2005 *************** *** 42,48 **** #define RERR_VANISHED 24 /* file(s) vanished on sender side */ #define RERR_TIMEOUT 30 /* timeout in data send/receive */ ! /* Although it doesn't seem to be specified anywhere, * ssh and the shell seem to return these values: * --- 42,49 ---- #define RERR_VANISHED 24 /* file(s) vanished on sender side */ #define RERR_TIMEOUT 30 /* timeou...
2006 May 24
0
rsync connection limit
...do not need to patch every time. Thanks and Cheers, Eugene. -- -------------- next part -------------- diff -Naur rsync-2.6.8/errcode.h rsync-2.6.8-new/errcode.h --- rsync-2.6.8/errcode.h Sat Dec 17 01:48:28 2005 +++ rsync-2.6.8-new/errcode.h Wed May 24 16:19:59 2006 @@ -47,6 +47,8 @@ #define RERR_TIMEOUT 30 /* timeout in data send/receive */ +#define RERR_CON_TIMEOUT 35 + /* Although it doesn't seem to be specified anywhere, * ssh and the shell seem to return these values: * diff -Naur rsync-2.6.8/log.c rsync-2.6.8-new/log.c --- rsync-2.6.8/log.c Sat Apr 8 19:04:34 2006 +++ rsyn...
2003 Oct 25
1
Trivial documentation patch
...col data stream @@ -1126,6 +1128,7 @@ dit(bf(RERR_SIGNAL 20)) Received SIGUSR1 or SIGINT dit(bf(RERR_WAITCHILD 21)) Some error returned by waitpid() dit(bf(RERR_MALLOC 22)) Error allocating core memory buffers +dit(bf(RERR_PARTIAL 23)) Partial transfer dit(bf(RERR_TIMEOUT 30)) Timeout in data send/receive enddit()
2004 Sep 05
1
minor typo fix for 2.6.3 pre 1
...ror allocating core memory buffers" }, { RERR_PARTIAL , "some files could not be transferred" }, - { RERR_VANISHED , "some files vanished before they could be transfered" }, + { RERR_VANISHED , "some files vanished before they could be transferred" }, { RERR_TIMEOUT , "timeout in data send/receive" }, { RERR_CMD_FAILED , "remote shell failed" }, { RERR_CMD_KILLED , "remote shell killed" }, Paul Slootman
2006 Feb 13
1
rsync SIGSEGV signal handler in Cygwin.
...an error to log. May be this is not an error but info or notice? This patch is for version 2.6.6 (if you interesting in it): diff -ur rsync-2.6.6/errcode.h rsync/errcode.h --- rsync-2.6.6/errcode.h Wed Apr 13 03:04:10 2005 +++ rsync/errcode.h Sat Jan 28 04:35:08 2006 @@ -44,6 +44,8 @@ #define RERR_TIMEOUT 30 /* timeout in data send/receive */ +#define RERR_CRASH 50 /* We have crashed. */ + /* Although it doesn't seem to be specified anywhere, * ssh and the shell seem to return these values: * diff -ur rsync-2.6.6/log.c rsync/log.c --- rsync-2.6.6/log.c Fri Jun 10 02:27:2...