Displaying 1 result from an estimated 1 matches for "force_f_in".
2003 Mar 08
1
[patch] rsync over existing I/O connections (new feature)
...-2.5.4-force_fd.apc.patch
-----
diff -urN rsync-2.5.4-2/main.c rsync-2.5.4-2apc/main.c
--- rsync-2.5.4-2/main.c Mon Sep 30 10:09:17 2002
+++ rsync-2.5.4-2apc/main.c Thu Mar 6 15:29:27 2003
@@ -665,6 +665,8 @@
extern int whole_file;
extern int write_batch;
extern int read_batch;
+ extern int force_f_in;
+ extern int force_f_out;
int rc;
/* Don't clobber argv[] so that ps(1) can still show the right
@@ -770,9 +772,14 @@
list_only = 1;
}
- pid = do_cmd(shell_cmd,shell_machine,shell_user,shell_path,&f_in,&f_out);
+ if (force_f_in != -1) {
+ ret = client_run(force_f_in, fo...