check a few HAVE_* macros
[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
20/* compatability routines for older rsync protocol versions */
21
22#include "rsync.h"
23
aae43eb3
AT
24extern int am_server;
25
43a481dc
AT
26extern int csum_length;
27
4fe159a8
AT
28extern int preserve_links;
29extern int preserve_perms;
30extern int preserve_devices;
31extern int preserve_uid;
32extern int preserve_gid;
33extern int preserve_times;
34extern int always_checksum;
aae43eb3 35extern int checksum_seed;
4fe159a8
AT
36
37
38extern int remote_version;
39
aae43eb3 40void setup_protocol(int f_out,int f_in)
4fe159a8 41{
aae43eb3
AT
42 if (am_server) {
43 remote_version = read_int(f_in);
44 write_int(f_out,PROTOCOL_VERSION);
45 write_flush(f_out);
46 } else {
47 write_int(f_out,PROTOCOL_VERSION);
48 write_flush(f_out);
49 remote_version = read_int(f_in);
50 }
51
52 if (remote_version < MIN_PROTOCOL_VERSION ||
53 remote_version > MAX_PROTOCOL_VERSION) {
54 fprintf(FERROR,"protocol version mismatch - is your shell clean?\n");
55 exit_cleanup(1);
56 }
57
aae43eb3
AT
58 if (remote_version >= 12) {
59 if (am_server) {
60 checksum_seed = time(NULL);
61 write_int(f_out,checksum_seed);
62 } else {
63 checksum_seed = read_int(f_in);
64 }
65 }
b98c7b81
AT
66
67 checksum_init();
4fe159a8
AT
68}
69