search for: msg_done

Displaying 7 results from an estimated 7 matches for "msg_done".

Did you mean: sg_done
2007 Jan 26
6
daemon sizes
Hi everyone I'm still getting strange sizes on the daemon logs. After transferring around 1.66GB over 14 hours (256kbit link) to an absolutely empty directory, I get: 2007/01/26 04:13:43 [26441] sent 57014 bytes received 44708 bytes total size 1947222268 du reports the final size of the directory on the daemon side as 1.6 G, and the "received" bytes can't be 44708?! I know
2009 May 03
0
Server option PrintLastLog does not work on AIX
...es a new login record), the last login record can be retrieved by that very same call. If we look at port-aix.c, we can see the following: if (loginsuccess((char *)user, (char *)host, (char *)ttynm, &msg) == 0) { success = 1; if (msg != NULL && loginmsg != NULL && !msg_done) { debug("AIX/loginsuccess: msg %s", msg); buffer_append(loginmsg, msg, strlen(msg)); xfree(msg); msg_done = 1; } } The pointer "msg" points to the new last login info for the user...
2004 May 02
1
2.6.2 patch for AIX
...-- rsync.h.orig 2004-05-01 16:52:14.000000000 -0500 +++ rsync.h 2004-05-01 16:52:18.000000000 -0500 @@ -123,7 +123,7 @@ MSG_DATA=0, /* raw data on the multiplexed stream */ MSG_ERROR=FERROR, MSG_INFO=FINFO, MSG_LOG=FLOG, /* remote logging */ MSG_REDO=4, /* reprocess indicated flist index */ - MSG_DONE=5, /* current phase is done */ + MSG_DONE=5 /* current phase is done */ }; #include "errcode.h"
2004 Aug 18
1
[PATCH] fix AIX compile
...+++ src-2.6.2-local/rsync.h 2004-08-18 11:36:18.000000000 +0200 @@ -123,7 +123,7 @@ MSG_DATA=0, /* raw data on the multiplexed stream */ MSG_ERROR=FERROR, MSG_INFO=FINFO, MSG_LOG=FLOG, /* remote logging */ MSG_REDO=4, /* reprocess indicated flist index */ - MSG_DONE=5, /* current phase is done */ + MSG_DONE=5 /* current phase is done */ }; #include "errcode.h"
2009 May 03
10
[Bug 1595] New: Server option PrintLastLog does not work on AIX
...a new login record), the last login record can be retrieved by that very same call. If we look at port-aix.c, we can see the following: if (loginsuccess((char *)user, (char *)host, (char *)ttynm, &msg) == 0) { success = 1; if (msg != NULL && loginmsg != NULL && !msg_done) { debug("AIX/loginsuccess: msg %s", msg); buffer_append(loginmsg, msg, strlen(msg)); xfree(msg); msg_done = 1; } } The pointer "msg" points to the new last login info for the user...
2004 Jan 17
1
--delete-sent-files (AKA --move-files)
...from the above list */ +#define FLAG_SENT (1<<1) + /* update this if you make incompatible changes */ #define PROTOCOL_VERSION 28 @@ -120,6 +126,7 @@ enum msgcode { MSG_ERROR=FERROR, MSG_INFO=FINFO, MSG_LOG=FLOG, /* remote logging */ MSG_REDO=4, /* reprocess indicated flist index */ MSG_DONE=5, /* current phase is done */ + MSG_SUCCESS=6, /* successfully updated indicated flist index */ }; #include "errcode.h" Index: rsync.yo --- rsync.yo 15 Jan 2004 17:45:53 -0000 1.139 +++ rsync.yo 17 Jan 2004 05:04:57 -0000 @@ -312,6 +312,7 @@ verb( --delete delete...
2004 Jul 12
2
[PATCH] Batch-mode rewrite
...ocal_name); io_flush(FULL_FLUSH); + + /* This test for read_batch is needed because of a + * protocol dependency on am_server state, see + * report(). We are quite fortunate that this + * workaround is not more complicated. */ + if (!read_batch) report(f_in); send_msg(MSG_DONE, "", 0); *************** *** 543,551 **** filesfrom_fd = -1; } - if (read_batch) - flist = batch_flist; - else flist = recv_file_list(f_in); if (!flist) { rprintf(FERROR,"server_recv: recv_file_list error\n"); --- 568,573 ---- *************** *** 585,590...