search for: no_detach

Displaying 8 results from an estimated 8 matches for "no_detach".

2005 Nov 01
2
request: add TCP buffer options to rsync CLI?
Dear rsync folks, I'd like to request/suggest that cli options to set TCP send/receive buffers be added to rsync client-side. Summary: I'm aware that a daemon's config-file can set socket options for the server side (e.g. SO_SNDBUF, SO_RCVBUF). That is useful. But when trying to get high-throughput rsync over long paths (i.e. large bandwidth*delay product), since
2003 Aug 06
1
Should --progress implicitly assert -v?
...ll automatically be incremented to 1. Toby --- ./options.c.orig Tue Aug 5 12:18:41 2003 +++ ./options.c Tue Aug 5 12:18:41 2003 @@ -363,7 +363,7 @@ {"daemon", 0, POPT_ARG_NONE, &am_daemon, 0, 0, 0 }, {"no-detach", 0, POPT_ARG_NONE, &no_detach, 0, 0, 0 }, {"stats", 0, POPT_ARG_NONE, &do_stats, 0, 0, 0 }, - {"progress", 0, POPT_ARG_NONE, &do_progress, 0, 0, 0 }, + {"progress", 0, POPT_ARG_NONE, 0, OPT_PROGRESS, 0, 0 }, {"partial", 0, PO...
2007 Aug 21
1
DO NOT REPLY [Bug 4907] New: --disable-ipv6 disables -4 option
...#ifdef INET6 {"ipv4", '4', POPT_ARG_VAL, &default_af_hint, AF_INET, 0, 0 }, +#ifdef INET6 {"ipv6", '6', POPT_ARG_VAL, &default_af_hint, AF_INET6, 0, 0 }, #endif {"detach", 0, POPT_ARG_VAL, &no_detach, 0, 0, 0 }, -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact.
2004 Feb 20
1
[patch] fix for "refuse options" ignored due to popt
...;, POPT_ARG_NONE, &do_compression, 0, 0, 0 }, + {"compress", 'z', POPT_ARG_NONE, &do_compression, OPT_COMPRESS, 0, 0 }, {"daemon", 0, POPT_ARG_NONE, &am_daemon, 0, 0, 0 }, {"no-detach", 0, POPT_ARG_NONE, &no_detach, 0, 0, 0 }, {"stats", 0, POPT_ARG_NONE, &do_stats, 0, 0, 0 }, @@ -585,6 +585,10 @@ #endif + case OPT_CHECKSUM: + case OPT_COMPRESS: + break; + default: /* FIXME: If --daemon is specified, then errors for later * parameters seem to disappear. */
2003 Apr 08
2
[Patch] Require extra --stats to emit heap statistics
...+++ options.c Sun Mar 30 15:11:58 2003 @@ -350,7 +350,7 @@ {"compress", 'z', POPT_ARG_NONE, &do_compression , 0, 0, 0 }, {"daemon", 0, POPT_ARG_NONE, &am_daemon , 0, 0, 0 }, {"no-detach", 0, POPT_ARG_NONE, &no_detach , 0, 0, 0 }, - {"stats", 0, POPT_ARG_NONE, &do_stats , 0, 0, 0 }, + {"stats", 0, POPT_ARG_NONE, 0, OPT_STATS, 0, 0 }, {"progress", 0, POPT_ARG_NONE, &do_progress , 0, 0, 0 }, {"partial",...
2004 Jan 06
2
[patch] making rsync less verbose
...log file transfers using specified format\n"); rprintf(F," --password-file=FILE get password from FILE\n"); @@ -357,6 +359,7 @@ {"daemon", 0, POPT_ARG_NONE, &am_daemon, 0, 0, 0 }, {"no-detach", 0, POPT_ARG_NONE, &no_detach, 0, 0, 0 }, {"stats", 0, POPT_ARG_NONE, &do_stats, 0, 0, 0 }, + {"speedup", 's', POPT_ARG_NONE, &show_speedup, 0, 0, 0 }, {"progress", 0, POPT_ARG_NONE, &do_progress, 0, 0, 0 }, {"partial",...
2002 Feb 07
1
Latest version of the batch mode cleanup patch
...================================================================ RCS file: /cvsroot/rsync/options.c,v retrieving revision 1.78 diff -u -r1.78 options.c --- options.c 5 Feb 2002 23:05:32 -0000 1.78 +++ options.c 6 Feb 2002 19:48:05 -0000 @@ -87,9 +87,8 @@ * or under Unix process-monitors. **/ int no_detach = 0; - -int read_batch=0; -int write_batch=0; +int write_batch = 0; +int read_batch = 0; char *backup_suffix = BACKUP_SUFFIX; char *tmpdir = NULL; @@ -107,7 +106,7 @@ int always_checksum = 0; int list_only = 0; -char *batch_ext = NULL; +char *batch_prefix = NULL; static int modify_wind...
2007 Sep 22
0
rsync build on IA64 using icc
...xternal declaration in primary source file extern int protocol_version; ^ clientserver.c(40): remark #1419: external declaration in primary source file extern int io_timeout; ^ clientserver.c(41): remark #1419: external declaration in primary source file extern int no_detach; ^ clientserver.c(42): remark #1419: external declaration in primary source file extern int default_af_hint; ^ clientserver.c(43): remark #1419: external declaration in primary source file extern int logfile_format_has_i; ^ clientserver.c(44): remark #1...