h61578
s 00009/00000/00025
d D 2.4 94/04/20 13:32:04 tim 4 3
c added copyright and warrantee statment
e
s 00006/00000/00019
d D 2.3 94/03/22 19:59:26 tim 3 2
c added define so incremental backups will handle CLOCKDIFF seconds adjustment  between the sun and psion clocks
e
s 00019/00000/00000
d D 2.2 94/03/21 21:30:21 tim 2 1
c added the new stuff for the defines etc to create the file
e
s 00000/00000/00000
d D 2.1 94/03/21 13:38:37 tim 1 0
c date and time created 94/03/21 13:38:37 by tim
e
u
U
f e 0
t
T
I 4
/* (C) Tim Graves 20th April 1994
   This code is supplied AS IS. no warrantee either expressed or implied 
   is provided. This code may be freeley modified and modified as long as my
   origional authorship is acknowledged. 
   
   Tim Graves
    Sun Microsystems
     
     */
E 4
I 2
/* this file contains information for the backup subsystem, it is included by
psbackup.c */
/* the max no of children a node can have */
#define MAXBACKUPNODECHILDREN 30
/* defing the level at which to debug */
#define BACKUPCALLDEBUG 3
struct backupentry {
	int count ;
	char pname[1000] ;
	int nodetype ;
	int exclude ;
	struct backupentry * children[MAXBACKUPNODECHILDREN +2] ;} ;
/* Node identifier defines */
#define BACKUPNODEFILE 1
#define BACKUPNODEDIR  2
#define BACKUPNODEUNKNOWN 3 

/* filename to use when listing */
#define BACKUPLISTNAME "/tmp/psionbackuplist"
I 3

/* define to allow some leway between the psion clock and the sun clock
   so incremental backups will backup a file if it was changed immediatley 
   after the backup 
   currently we allow 10 mins variation */
#define CLOCKDIFF 600 
E 3
E 2
I 1
E 1
