Change from getopt to popt.
[rsync/rsync.git] / options.c
... / ...
CommitLineData
1/* -*- c-file-style: "linux" -*-
2
3 Copyright (C) 1998-2000 by Andrew Tridgell
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20/* options parsing code */
21
22#include "rsync.h"
23
24
25int make_backups = 0;
26int whole_file = 0;
27int copy_links = 0;
28int preserve_links = 0;
29int preserve_hard_links = 0;
30int preserve_perms = 0;
31int preserve_devices = 0;
32int preserve_uid = 0;
33int preserve_gid = 0;
34int preserve_times = 0;
35int update_only = 0;
36int cvs_exclude = 0;
37int dry_run=0;
38int local_server=0;
39int ignore_times=0;
40int delete_mode=0;
41int delete_excluded=0;
42int one_file_system=0;
43int remote_version=0;
44int sparse_files=0;
45int do_compression=0;
46int am_root=0;
47int orig_umask=0;
48int relative_paths=0;
49int numeric_ids = 0;
50int force_delete = 0;
51int io_timeout = 0;
52int io_error = 0;
53int read_only = 0;
54int module_id = -1;
55int am_server = 0;
56int am_sender=0;
57int recurse = 0;
58int am_daemon=0;
59int do_stats=0;
60int do_progress=0;
61int keep_partial=0;
62int safe_symlinks=0;
63int copy_unsafe_links=0;
64int block_size=BLOCK_SIZE;
65int size_only=0;
66int bwlimit=0;
67int delete_after=0;
68int only_existing=0;
69int max_delete=0;
70int ignore_errors=0;
71#ifdef _WIN32
72int modify_window=2;
73#else
74int modify_window=0;
75#endif
76int blocking_io=0;
77
78char *backup_suffix = BACKUP_SUFFIX;
79char *tmpdir = NULL;
80char *compare_dest = NULL;
81char *config_file = RSYNCD_CONF;
82char *shell_cmd = NULL;
83char *log_format = NULL;
84char *password_file = NULL;
85char *rsync_path = RSYNC_NAME;
86char *backup_dir = NULL;
87int rsync_port = RSYNC_PORT;
88
89int verbose = 0;
90int quiet = 0;
91int always_checksum = 0;
92int list_only = 0;
93
94static int modify_window_set;
95
96
97struct in_addr socket_address = {INADDR_ANY};
98
99
100static void print_rsync_version(void)
101{
102 char const *got_socketpair = "no ";
103
104#ifdef HAVE_SOCKETPAIR
105 got_socketpair = "";
106#endif
107
108 rprintf(FINFO, "rsync version %s protocol version %d\n",
109 VERSION, PROTOCOL_VERSION);
110 rprintf(FINFO, "Configuration: %d-bit files, %ssocketpairs\n\n",
111 sizeof(int64) * 8,
112 got_socketpair);
113 rprintf(FINFO, "Written by Andrew Tridgell and Paul Mackerras "
114 "<http://rsync.samba.org/>\n\n");
115#ifdef NO_INT64
116 rprintf(FINFO, "WARNING: no 64-bit integers on this platform!\n");
117#endif
118}
119
120
121void usage(enum logcode F)
122{
123 rprintf(F,"rsync version %s Copyright Andrew Tridgell and Paul Mackerras\n\n",
124 VERSION);
125#ifdef NO_INT64
126 rprintf(F, "WARNING: no 64-bit integers on this platform!\n");
127#endif
128
129 rprintf(F,"rsync is a file transfer program capable of efficient remote update\nvia a fast differencing algorithm.\n\n");
130
131 rprintf(F,"Usage: rsync [OPTION]... SRC [SRC]... [USER@]HOST:DEST\n");
132 rprintf(F," or rsync [OPTION]... [USER@]HOST:SRC DEST\n");
133 rprintf(F," or rsync [OPTION]... SRC [SRC]... DEST\n");
134 rprintf(F," or rsync [OPTION]... [USER@]HOST::SRC [DEST]\n");
135 rprintf(F," or rsync [OPTION]... SRC [SRC]... [USER@]HOST::DEST\n");
136 rprintf(F," or rsync [OPTION]... rsync://[USER@]HOST[:PORT]/SRC [DEST]\n");
137 rprintf(F,"SRC on single-colon remote HOST will be expanded by remote shell\n");
138 rprintf(F,"SRC on server remote HOST may contain shell wildcards or multiple\n");
139 rprintf(F," sources separated by space as long as they have same top-level\n");
140 rprintf(F,"\nOptions\n");
141 rprintf(F," -v, --verbose increase verbosity\n");
142 rprintf(F," -q, --quiet decrease verbosity\n");
143 rprintf(F," -c, --checksum always checksum\n");
144 rprintf(F," -a, --archive archive mode\n");
145 rprintf(F," -r, --recursive recurse into directories\n");
146 rprintf(F," -R, --relative use relative path names\n");
147 rprintf(F," -b, --backup make backups (default %s suffix)\n",BACKUP_SUFFIX);
148 rprintf(F," --backup-dir make backups into this directory\n");
149 rprintf(F," --suffix=SUFFIX override backup suffix\n");
150 rprintf(F," -u, --update update only (don't overwrite newer files)\n");
151 rprintf(F," -l, --links preserve soft links\n");
152 rprintf(F," -L, --copy-links treat soft links like regular files\n");
153 rprintf(F," --copy-unsafe-links copy links outside the source tree\n");
154 rprintf(F," --safe-links ignore links outside the destination tree\n");
155 rprintf(F," -H, --hard-links preserve hard links\n");
156 rprintf(F," -p, --perms preserve permissions\n");
157 rprintf(F," -o, --owner preserve owner (root only)\n");
158 rprintf(F," -g, --group preserve group\n");
159 rprintf(F," -D, --devices preserve devices (root only)\n");
160 rprintf(F," -t, --times preserve times\n");
161 rprintf(F," -S, --sparse handle sparse files efficiently\n");
162 rprintf(F," -n, --dry-run show what would have been transferred\n");
163 rprintf(F," -W, --whole-file copy whole files, no incremental checks\n");
164 rprintf(F," -x, --one-file-system don't cross filesystem boundaries\n");
165 rprintf(F," -B, --block-size=SIZE checksum blocking size (default %d)\n",BLOCK_SIZE);
166 rprintf(F," -e, --rsh=COMMAND specify rsh replacement\n");
167 rprintf(F," --rsync-path=PATH specify path to rsync on the remote machine\n");
168 rprintf(F," -C, --cvs-exclude auto ignore files in the same way CVS does\n");
169 rprintf(F," --existing only update files that already exist\n");
170 rprintf(F," --delete delete files that don't exist on the sending side\n");
171 rprintf(F," --delete-excluded also delete excluded files on the receiving side\n");
172 rprintf(F," --delete-after delete after transferring, not before\n");
173 rprintf(F," --ignore-errors delete even if there are IO errors\n");
174 rprintf(F," --max-delete=NUM don't delete more than NUM files\n");
175 rprintf(F," --partial keep partially transferred files\n");
176 rprintf(F," --force force deletion of directories even if not empty\n");
177 rprintf(F," --numeric-ids don't map uid/gid values by user/group name\n");
178 rprintf(F," --timeout=TIME set IO timeout in seconds\n");
179 rprintf(F," -I, --ignore-times don't exclude files that match length and time\n");
180 rprintf(F," --size-only only use file size when determining if a file should be transferred\n");
181 rprintf(F," --modify-window=NUM Timestamp window (seconds) for file match (default=%d)\n",modify_window);
182 rprintf(F," -T --temp-dir=DIR create temporary files in directory DIR\n");
183 rprintf(F," --compare-dest=DIR also compare destination files relative to DIR\n");
184 rprintf(F," -P equivalent to --partial --progress\n");
185 rprintf(F," -z, --compress compress file data\n");
186 rprintf(F," --exclude=PATTERN exclude files matching PATTERN\n");
187 rprintf(F," --exclude-from=FILE exclude patterns listed in FILE\n");
188 rprintf(F," --include=PATTERN don't exclude files matching PATTERN\n");
189 rprintf(F," --include-from=FILE don't exclude patterns listed in FILE\n");
190 rprintf(F," --version print version number\n");
191 rprintf(F," --daemon run as a rsync daemon\n");
192 rprintf(F," --address bind to the specified address\n");
193 rprintf(F," --config=FILE specify alternate rsyncd.conf file\n");
194 rprintf(F," --port=PORT specify alternate rsyncd port number\n");
195 rprintf(F," --blocking-io use blocking IO for the remote shell\n");
196 rprintf(F," --stats give some file transfer stats\n");
197 rprintf(F," --progress show progress during transfer\n");
198 rprintf(F," --log-format=FORMAT log file transfers using specified format\n");
199 rprintf(F," --password-file=FILE get password from FILE\n");
200 rprintf(F," --bwlimit=KBPS limit I/O bandwidth, KBytes per second\n");
201 rprintf(F," -h, --help show this help screen\n");
202
203 rprintf(F,"\n");
204
205 rprintf(F,"\nPlease see the rsync(1) and rsyncd.conf(5) man pages for full documentation\n");
206 rprintf(F,"See http://rsync.samba.org/ for updates and bug reports\n");
207}
208
209enum {OPT_VERSION, OPT_SUFFIX, OPT_SENDER, OPT_SERVER, OPT_EXCLUDE,
210 OPT_EXCLUDE_FROM, OPT_DELETE, OPT_DELETE_EXCLUDED, OPT_NUMERIC_IDS,
211 OPT_RSYNC_PATH, OPT_FORCE, OPT_TIMEOUT, OPT_DAEMON, OPT_CONFIG, OPT_PORT,
212 OPT_INCLUDE, OPT_INCLUDE_FROM, OPT_STATS, OPT_PARTIAL, OPT_PROGRESS,
213 OPT_COPY_UNSAFE_LINKS, OPT_SAFE_LINKS, OPT_COMPARE_DEST,
214 OPT_LOG_FORMAT, OPT_PASSWORD_FILE, OPT_SIZE_ONLY, OPT_ADDRESS,
215 OPT_DELETE_AFTER, OPT_EXISTING, OPT_MAX_DELETE, OPT_BACKUP_DIR,
216 OPT_IGNORE_ERRORS, OPT_BWLIMIT, OPT_BLOCKING_IO,
217 OPT_MODIFY_WINDOW};
218
219static char *short_options = "oblLWHpguDCtcahvqrRIxnSe:B:T:zP";
220
221static struct option long_options[] = {
222 {"version", 0, 0, OPT_VERSION},
223 {"server", 0, 0, OPT_SERVER},
224 {"sender", 0, 0, OPT_SENDER},
225 {"existing", 0, 0, OPT_EXISTING},
226 {"delete", 0, 0, OPT_DELETE},
227 {"delete-excluded", 0, 0, OPT_DELETE_EXCLUDED},
228 {"force", 0, 0, OPT_FORCE},
229 {"numeric-ids", 0, 0, OPT_NUMERIC_IDS},
230 {"exclude", 1, 0, OPT_EXCLUDE},
231 {"exclude-from",1, 0, OPT_EXCLUDE_FROM},
232 {"include", 1, 0, OPT_INCLUDE},
233 {"include-from",1, 0, OPT_INCLUDE_FROM},
234 {"rsync-path", 1, 0, OPT_RSYNC_PATH},
235 {"password-file", 1, 0, OPT_PASSWORD_FILE},
236 {"one-file-system",0, 0, 'x'},
237 {"ignore-times",0, 0, 'I'},
238 {"size-only", 0, 0, OPT_SIZE_ONLY},
239 {"modify-window",1, 0, OPT_MODIFY_WINDOW},
240 {"help", 0, 0, 'h'},
241 {"dry-run", 0, 0, 'n'},
242 {"sparse", 0, 0, 'S'},
243 {"cvs-exclude", 0, 0, 'C'},
244 {"archive", 0, 0, 'a'},
245 {"checksum", 0, 0, 'c'},
246 {"backup", 0, 0, 'b'},
247 {"update", 0, 0, 'u'},
248 {"verbose", 0, 0, 'v'},
249 {"quiet", 0, 0, 'q'},
250 {"recursive", 0, 0, 'r'},
251 {"relative", 0, 0, 'R'},
252 {"devices", 0, 0, 'D'},
253 {"perms", 0, 0, 'p'},
254 {"links", 0, 0, 'l'},
255 {"copy-links", 0, 0, 'L'},
256 {"copy-unsafe-links", 0, 0, OPT_COPY_UNSAFE_LINKS},
257 {"safe-links", 0, 0, OPT_SAFE_LINKS},
258 {"whole-file", 0, 0, 'W'},
259 {"hard-links", 0, 0, 'H'},
260 {"owner", 0, 0, 'o'},
261 {"group", 0, 0, 'g'},
262 {"times", 0, 0, 't'},
263 {"rsh", 1, 0, 'e'},
264 {"suffix", 1, 0, OPT_SUFFIX},
265 {"block-size", 1, 0, 'B'},
266 {"timeout", 1, 0, OPT_TIMEOUT},
267 {"temp-dir", 1, 0, 'T'},
268 {"compare-dest", 1, 0, OPT_COMPARE_DEST},
269 {"compress", 0, 0, 'z'},
270 {"daemon", 0, 0, OPT_DAEMON},
271 {"stats", 0, 0, OPT_STATS},
272 {"progress", 0, 0, OPT_PROGRESS},
273 {"partial", 0, 0, OPT_PARTIAL},
274 {"delete-after",0, 0, OPT_DELETE_AFTER},
275 {"ignore-errors",0, 0, OPT_IGNORE_ERRORS},
276 {"blocking-io" ,0, 0, OPT_BLOCKING_IO},
277 {"config", 1, 0, OPT_CONFIG},
278 {"port", 1, 0, OPT_PORT},
279 {"log-format", 1, 0, OPT_LOG_FORMAT},
280 {"bwlimit", 1, 0, OPT_BWLIMIT},
281 {"address", 1, 0, OPT_ADDRESS},
282 {"max-delete", 1, 0, OPT_MAX_DELETE},
283 {"backup-dir", 1, 0, OPT_BACKUP_DIR},
284 {0,0,0,0}};
285
286
287static char err_buf[100];
288
289void option_error(void)
290{
291 if (err_buf[0]) {
292 rprintf(FLOG,"%s", err_buf);
293 rprintf(FERROR,"%s", err_buf);
294 } else {
295 rprintf(FLOG,"Error parsing options - unsupported option?\n");
296 rprintf(FERROR,"Error parsing options - unsupported option?\n");
297 }
298 exit_cleanup(RERR_UNSUPPORTED);
299}
300
301/* check to see if we should refuse this option */
302static int check_refuse_options(char *ref, int opt)
303{
304 int i, len;
305 char *p;
306 const char *name;
307
308 for (i=0; long_options[i].name; i++) {
309 if (long_options[i].val == opt) break;
310 }
311
312 if (!long_options[i].name) return 0;
313
314 name = long_options[i].name;
315 len = strlen(name);
316
317 while ((p = strstr(ref,name))) {
318 if ((p==ref || p[-1]==' ') &&
319 (p[len] == ' ' || p[len] == 0)) {
320 slprintf(err_buf,sizeof(err_buf),
321 "The '%s' option is not supported by this server\n", name);
322 return 1;
323 }
324 ref += len;
325 }
326 return 0;
327}
328
329
330int parse_arguments(int argc, char *argv[], int frommain)
331{
332 int opt;
333 int option_index;
334 char *ref = lp_refuse_options(module_id);
335
336 while ((opt = getopt_long(argc, argv,
337 short_options, long_options, &option_index))
338 != -1) {
339
340 if (ref) {
341 if (check_refuse_options(ref, opt)) return 0;
342 }
343
344 switch (opt) {
345 case OPT_VERSION:
346 print_rsync_version();
347 exit_cleanup(0);
348
349 case OPT_SUFFIX:
350 backup_suffix = optarg;
351 break;
352
353 case OPT_RSYNC_PATH:
354 rsync_path = optarg;
355 break;
356
357 case OPT_PASSWORD_FILE:
358 password_file =optarg;
359 break;
360
361 case 'I':
362 ignore_times = 1;
363 break;
364
365 case OPT_SIZE_ONLY:
366 size_only = 1;
367 break;
368
369 case OPT_MODIFY_WINDOW:
370 modify_window = atoi(optarg);
371 modify_window_set = 1;
372 break;
373
374 case 'x':
375 one_file_system=1;
376 break;
377
378 case OPT_DELETE:
379 delete_mode = 1;
380 break;
381
382 case OPT_EXISTING:
383 only_existing = 1;
384 break;
385
386 case OPT_DELETE_AFTER:
387 delete_after = 1;
388 break;
389
390 case OPT_DELETE_EXCLUDED:
391 delete_excluded = 1;
392 delete_mode = 1;
393 break;
394
395 case OPT_FORCE:
396 force_delete = 1;
397 break;
398
399 case OPT_NUMERIC_IDS:
400 numeric_ids = 1;
401 break;
402
403 case OPT_EXCLUDE:
404 add_exclude(optarg, 0);
405 break;
406
407 case OPT_INCLUDE:
408 add_exclude(optarg, 1);
409 break;
410
411 case OPT_EXCLUDE_FROM:
412 add_exclude_file(optarg,1, 0);
413 break;
414
415 case OPT_INCLUDE_FROM:
416 add_exclude_file(optarg,1, 1);
417 break;
418
419 case OPT_COPY_UNSAFE_LINKS:
420 copy_unsafe_links=1;
421 break;
422
423 case OPT_SAFE_LINKS:
424 safe_symlinks=1;
425 break;
426
427 case 'h':
428 usage(FINFO);
429 exit_cleanup(0);
430
431 case 'b':
432 make_backups=1;
433 break;
434
435 case 'n':
436 dry_run=1;
437 break;
438
439 case 'S':
440 sparse_files=1;
441 break;
442
443 case 'C':
444 cvs_exclude=1;
445 break;
446
447 case 'u':
448 update_only=1;
449 break;
450
451 case 'l':
452 preserve_links=1;
453 break;
454
455 case 'L':
456 copy_links=1;
457 break;
458
459 case 'W':
460 whole_file=1;
461 break;
462
463 case 'H':
464#if SUPPORT_HARD_LINKS
465 preserve_hard_links=1;
466#else
467 slprintf(err_buf,sizeof(err_buf),"hard links are not supported on this server\n");
468 rprintf(FERROR,"ERROR: hard links not supported on this platform\n");
469 return 0;
470#endif
471 break;
472
473 case 'p':
474 preserve_perms=1;
475 break;
476
477 case 'o':
478 preserve_uid=1;
479 break;
480
481 case 'g':
482 preserve_gid=1;
483 break;
484
485 case 'D':
486 preserve_devices=1;
487 break;
488
489 case 't':
490 preserve_times=1;
491 break;
492
493 case 'c':
494 always_checksum=1;
495 break;
496
497 case 'v':
498 verbose++;
499 break;
500
501 case 'q':
502 if (frommain) quiet++;
503 break;
504
505 case 'a':
506 recurse=1;
507#if SUPPORT_LINKS
508 preserve_links=1;
509#endif
510 preserve_perms=1;
511 preserve_times=1;
512 preserve_gid=1;
513 preserve_uid=1;
514 preserve_devices=1;
515 break;
516
517 case OPT_SERVER:
518 am_server = 1;
519 break;
520
521 case OPT_SENDER:
522 if (!am_server) {
523 usage(FERROR);
524 exit_cleanup(RERR_SYNTAX);
525 }
526 am_sender = 1;
527 break;
528
529 case 'r':
530 recurse = 1;
531 break;
532
533 case 'R':
534 relative_paths = 1;
535 break;
536
537 case 'e':
538 shell_cmd = optarg;
539 break;
540
541 case 'B':
542 block_size = atoi(optarg);
543 break;
544
545 case OPT_MAX_DELETE:
546 max_delete = atoi(optarg);
547 break;
548
549 case OPT_TIMEOUT:
550 io_timeout = atoi(optarg);
551 break;
552
553 case 'T':
554 tmpdir = optarg;
555 break;
556
557 case OPT_COMPARE_DEST:
558 compare_dest = optarg;
559 break;
560
561 case 'z':
562 do_compression = 1;
563 break;
564
565 case OPT_DAEMON:
566 am_daemon = 1;
567 break;
568
569 case OPT_STATS:
570 do_stats = 1;
571 break;
572
573 case OPT_PROGRESS:
574 do_progress = 1;
575 break;
576
577 case OPT_PARTIAL:
578 keep_partial = 1;
579 break;
580
581 case OPT_IGNORE_ERRORS:
582 ignore_errors = 1;
583 break;
584
585 case OPT_BLOCKING_IO:
586 blocking_io = 1;
587 break;
588
589 case 'P':
590 do_progress = 1;
591 keep_partial = 1;
592 break;
593
594 case OPT_CONFIG:
595 config_file = optarg;
596 break;
597
598 case OPT_PORT:
599 rsync_port = atoi(optarg);
600 break;
601
602 case OPT_LOG_FORMAT:
603 log_format = optarg;
604 break;
605
606 case OPT_BWLIMIT:
607 bwlimit = atoi(optarg);
608 break;
609
610 case OPT_ADDRESS:
611 {
612 struct in_addr *ia;
613 if ((ia = ip_address(optarg))) {
614 socket_address = *ia;
615 }
616 }
617 break;
618
619 case OPT_BACKUP_DIR:
620 backup_dir = optarg;
621 break;
622
623 default:
624 /* FIXME: This can be confusing when the error message
625 * is coming from a remote server which has an older
626 * rsync version than the local version. The user
627 * sees the option documented in the local --help, but
628 * then the program seems to refuse to execute it. So
629 * perhaps the message should give the hostname or
630 * something.
631 *
632 * In rsync 3.x, it might be nice if options which
633 * only affect one end didn't have to bother the
634 * remote end. */
635 slprintf(err_buf,sizeof(err_buf),"unrecognised option\n");
636 return 0;
637 }
638 }
639 return 1;
640}
641
642
643/* need to pass all the valid options from the client to the server */
644
645void server_options(char **args,int *argc)
646{
647 int ac = *argc;
648 static char argstr[50];
649 static char bsize[30];
650 static char iotime[30];
651 static char mdelete[30];
652 static char mwindow[30];
653 static char bw[50];
654
655 int i, x;
656
657 args[ac++] = "--server";
658
659 if (!am_sender)
660 args[ac++] = "--sender";
661
662 x = 1;
663 argstr[0] = '-';
664 for (i=0;i<verbose;i++)
665 argstr[x++] = 'v';
666
667 /* the -q option is intentionally left out */
668 if (make_backups)
669 argstr[x++] = 'b';
670 if (update_only)
671 argstr[x++] = 'u';
672 if (dry_run)
673 argstr[x++] = 'n';
674 if (preserve_links)
675 argstr[x++] = 'l';
676 if (copy_links)
677 argstr[x++] = 'L';
678 if (whole_file)
679 argstr[x++] = 'W';
680 if (preserve_hard_links)
681 argstr[x++] = 'H';
682 if (preserve_uid)
683 argstr[x++] = 'o';
684 if (preserve_gid)
685 argstr[x++] = 'g';
686 if (preserve_devices)
687 argstr[x++] = 'D';
688 if (preserve_times)
689 argstr[x++] = 't';
690 if (preserve_perms)
691 argstr[x++] = 'p';
692 if (recurse)
693 argstr[x++] = 'r';
694 if (always_checksum)
695 argstr[x++] = 'c';
696 if (cvs_exclude)
697 argstr[x++] = 'C';
698 if (ignore_times)
699 argstr[x++] = 'I';
700 if (relative_paths)
701 argstr[x++] = 'R';
702 if (one_file_system)
703 argstr[x++] = 'x';
704 if (sparse_files)
705 argstr[x++] = 'S';
706 if (do_compression)
707 argstr[x++] = 'z';
708
709 /* this is a complete hack - blame Rusty
710
711 this is a hack to make the list_only (remote file list)
712 more useful */
713 if (list_only && !recurse)
714 argstr[x++] = 'r';
715
716 argstr[x] = 0;
717
718 if (x != 1) args[ac++] = argstr;
719
720 if (block_size != BLOCK_SIZE) {
721 slprintf(bsize,sizeof(bsize),"-B%d",block_size);
722 args[ac++] = bsize;
723 }
724
725 if (max_delete && am_sender) {
726 slprintf(mdelete,sizeof(mdelete),"--max-delete=%d",max_delete);
727 args[ac++] = mdelete;
728 }
729
730 if (io_timeout) {
731 slprintf(iotime,sizeof(iotime),"--timeout=%d",io_timeout);
732 args[ac++] = iotime;
733 }
734
735 if (bwlimit) {
736 slprintf(bw,sizeof(bw),"--bwlimit=%d",bwlimit);
737 args[ac++] = bw;
738 }
739
740 if (strcmp(backup_suffix, BACKUP_SUFFIX)) {
741 args[ac++] = "--suffix";
742 args[ac++] = backup_suffix;
743 }
744
745 if (delete_mode && !delete_excluded)
746 args[ac++] = "--delete";
747
748 if (delete_excluded)
749 args[ac++] = "--delete-excluded";
750
751 if (size_only)
752 args[ac++] = "--size-only";
753
754 if (modify_window_set) {
755 slprintf(mwindow,sizeof(mwindow),"--modify-window=%d",
756 modify_window);
757 args[ac++] = mwindow;
758 }
759
760 if (keep_partial)
761 args[ac++] = "--partial";
762
763 if (force_delete)
764 args[ac++] = "--force";
765
766 if (delete_after)
767 args[ac++] = "--delete-after";
768
769 if (ignore_errors)
770 args[ac++] = "--ignore-errors";
771
772 if (copy_unsafe_links)
773 args[ac++] = "--copy-unsafe-links";
774
775 if (safe_symlinks)
776 args[ac++] = "--safe-links";
777
778 if (numeric_ids)
779 args[ac++] = "--numeric-ids";
780
781 if (only_existing && am_sender)
782 args[ac++] = "--existing";
783
784 if (tmpdir) {
785 args[ac++] = "--temp-dir";
786 args[ac++] = tmpdir;
787 }
788
789 if (backup_dir && am_sender) {
790 /* only the receiver needs this option, if we are the sender
791 * then we need to send it to the receiver.
792 */
793 args[ac++] = "--backup-dir";
794 args[ac++] = backup_dir;
795 }
796
797 if (compare_dest && am_sender) {
798 /* the server only needs this option if it is not the sender,
799 * and it may be an older version that doesn't know this
800 * option, so don't send it if client is the sender.
801 */
802 args[ac++] = "--compare-dest";
803 args[ac++] = compare_dest;
804 }
805
806
807 *argc = ac;
808}
809