save one round trip (version swapping) for daemon.
[rsync/rsync.git] / compat.c
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
24 extern int am_server;
25
26 extern int csum_length;
27
28 extern int preserve_links;
29 extern int preserve_perms;
30 extern int preserve_devices;
31 extern int preserve_uid;
32 extern int preserve_gid;
33 extern int preserve_times;
34 extern int always_checksum;
35 extern int checksum_seed;
36
37
38 extern int remote_version;
39 extern int verbose;
40
41 void setup_protocol(int f_out,int f_in)
42 {
43         if (remote_version == 0) {
44                 if (am_server) {
45                         remote_version = read_int(f_in);
46                         write_int(f_out,PROTOCOL_VERSION);
47                         write_flush(f_out);
48                 } else {
49                         write_int(f_out,PROTOCOL_VERSION);
50                         write_flush(f_out);
51                         remote_version = read_int(f_in);
52                 }
53         }
54
55         if (remote_version < MIN_PROTOCOL_VERSION ||
56             remote_version > MAX_PROTOCOL_VERSION) {
57                 rprintf(FERROR,"protocol version mismatch - is your shell clean?\n");
58                 exit_cleanup(1);
59         }       
60         
61         if (verbose > 2)
62                 rprintf(FINFO, "local_version=%d remote_version=%d\n",
63                         PROTOCOL_VERSION, remote_version);
64         
65         if (remote_version >= 12) {
66                 if (am_server) {
67                         checksum_seed = time(NULL);
68                         write_int(f_out,checksum_seed);
69                 } else {
70                         checksum_seed = read_int(f_in);
71                 }
72         }
73         
74         checksum_init();
75 }
76