Made the dest_option string non-static.
[rsync/rsync.git] / compat.c
CommitLineData
4fe159a8
AT
1/*
2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
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
d1f83bcc
MP
20/**
21 * @file compat.c
22 *
23 * Compatibility routines for older rsync protocol versions.
24 **/
4fe159a8
AT
25
26#include "rsync.h"
27
8a9709de
WD
28int remote_protocol = 0;
29
b9f592fb 30extern int verbose;
aae43eb3 31extern int am_server;
b9f592fb 32extern int am_sender;
e461b9be 33extern int fuzzy_basis;
b9f592fb 34extern int read_batch;
aae43eb3 35extern int checksum_seed;
8a9709de 36extern int protocol_version;
4fe159a8 37
aae43eb3 38void setup_protocol(int f_out,int f_in)
4fe159a8 39{
8a9709de 40 if (remote_protocol == 0) {
aa434321 41 if (!read_batch)
8a9709de 42 write_int(f_out, protocol_version);
aa434321 43 remote_protocol = read_int(f_in);
8a9709de
WD
44 if (protocol_version > remote_protocol)
45 protocol_version = remote_protocol;
13c5fc0e 46 }
b9f592fb
WD
47 if (read_batch && remote_protocol > protocol_version) {
48 rprintf(FERROR, "The protocol version in the batch file is too new (%d > %d).\n",
49 remote_protocol, protocol_version);
50 exit_cleanup(RERR_PROTOCOL);
51 }
aae43eb3 52
8a9709de
WD
53 if (verbose > 3) {
54 rprintf(FINFO, "(%s) Protocol versions: remote=%d, negotiated=%d\n",
55 am_server? "Server" : "Client", remote_protocol, protocol_version);
56 }
57 if (remote_protocol < MIN_PROTOCOL_VERSION
58 || remote_protocol > MAX_PROTOCOL_VERSION) {
4ccfd96c 59 rprintf(FERROR,"protocol version mismatch -- is your shell clean?\n");
d310a212 60 rprintf(FERROR,"(see the rsync man page for an explanation)\n");
65417579 61 exit_cleanup(RERR_PROTOCOL);
8a9709de
WD
62 }
63 if (remote_protocol < OLD_PROTOCOL_VERSION) {
1b2db7ae 64 rprintf(FINFO,"%s is very old version of rsync, upgrade recommended.\n",
8a9709de
WD
65 am_server? "Client" : "Server");
66 }
67 if (protocol_version < MIN_PROTOCOL_VERSION) {
68 rprintf(FERROR, "--protocol must be at least %d on the %s.\n",
69 MIN_PROTOCOL_VERSION, am_server? "Server" : "Client");
70 exit_cleanup(RERR_PROTOCOL);
71 }
72 if (protocol_version > PROTOCOL_VERSION) {
73 rprintf(FERROR, "--protocol must be no more than %d on the %s.\n",
74 PROTOCOL_VERSION, am_server? "Server" : "Client");
75 exit_cleanup(RERR_PROTOCOL);
76 }
1b2db7ae 77
e461b9be
WD
78 if (fuzzy_basis && protocol_version < 29) {
79 rprintf(FERROR,
80 "--fuzzy requres protocol 29 or higher (negotiated %d).\n",
81 protocol_version);
82 exit_cleanup(RERR_PROTOCOL);
83 }
84
bc63ae3f 85 if (am_server) {
b1bf649c 86 if (!checksum_seed)
13c5fc0e 87 checksum_seed = time(NULL);
b1bf649c 88 write_int(f_out, checksum_seed);
bc63ae3f
S
89 } else {
90 checksum_seed = read_int(f_in);
13c5fc0e 91 }
4fe159a8 92}