home *** CD-ROM | disk | FTP | other *** search
- /* (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
-
- */
- /* this file contains information for the backup subsystem, it is included by
- psbackup.c */
- /* defing the level at which to debug */
- #define BACKUPCALLDEBUG 3
- struct backupentry {
- char *pname ;
- int nodetype ;
- int exclude ;
- struct backupentry * next ;
- struct backupentry * children ;} ;
- /* Node identifier defines */
- #define BACKUPNODEFILE 1
- #define BACKUPNODEDIR 2
- #define BACKUPNODEUNKNOWN 3
-
- /* filename to use when listing */
- #define BACKUPLISTNAME "/tmp/psionbackuplist"
-
- /* 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
-