X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=dump%2Fdump.h;h=e2152233f91703b8b7bb596319d64cc0dd1bdb6c;hb=d6967896bc4e18f9b4359a2ef5be5c0f1bcc456a;hp=23331ff8dd66c6ba950414c3b947f86c7cd266bc;hpb=20c345aa6780d2b021ce6cdbd812e4f021273640;p=dump.git diff --git a/dump/dump.h b/dump/dump.h index 23331ff..e215223 100644 --- a/dump/dump.h +++ b/dump/dump.h @@ -2,9 +2,10 @@ * Ported to Linux's Second Extended File System as part of the * dump and restore backup suit * Remy Card , 1994-1997 - * Stelian Pop , 1999-2000 + * Stelian Pop , 1999-2000 + * Stelian Pop - AlcĂ´ve , 2000 * - * $Id: dump.h,v 1.10 2000/02/04 20:22:21 stelian Exp $ + * $Id: dump.h,v 1.19 2000/12/21 11:14:53 stelian Exp $ */ /*- @@ -40,13 +41,11 @@ * SUCH DAMAGE. */ +#include + #define MAXINOPB (MAXBSIZE / sizeof(struct dinode)) #define MAXNINDIR (MAXBSIZE / sizeof(daddr_t)) -#ifndef NAME_MAX -#define NAME_MAX 255 -#endif - /* * Dump maps used to describe what is to be dumped. */ @@ -68,14 +67,14 @@ char *dumpinomap; /* map of files to be dumped */ * All calculations done in 0.1" units! */ char *disk; /* name of the disk file */ -char tape[NAME_MAX]; /* name of the tape file */ +char tape[MAXPATHLEN]; /* name of the tape file */ char *tapeprefix; /* prefix of the tape file */ char *dumpdates; /* name of the file containing dump date information*/ -char *temp; /* name of the file for doing rewrite of dumpdates */ char lastlevel; /* dump level of previous dump */ char level; /* dump level of this dump */ int uflag; /* update flag */ int Mflag; /* multi-volume flag */ +char *eot_script; /* end of volume script fiag */ int diskfd; /* disk file descriptor */ int tapefd; /* tape file descriptor */ int pipeout; /* true => output to standard output */ @@ -126,7 +125,7 @@ time_t unctime __P((const char *str)); /* mapping rouintes */ struct dinode; -long blockest __P((struct dinode *dp)); +long blockest __P((struct dinode const *dp)); int mapfiles __P((ino_t maxino, long *tapesize)); #ifdef __linux__ int mapfilesfromdir __P((ino_t maxino, long *tapesize, char *directory)); @@ -148,8 +147,9 @@ int alloctape __P((void)); void close_rewind __P((void)); void dumpblock __P((daddr_t blkno, int size)); void startnewtape __P((int top)); -void trewind __P((void)); +time_t trewind __P((void)); void writerec __P((const void *dp, int isspcl)); +char *mktimeest __P((time_t tnow)); void Exit __P((int status)); void dumpabort __P((int signo)); @@ -197,7 +197,8 @@ struct fstab *fstabsearchdir __P((const char *key, char *dir)); /* search fs_fil * a linked list, and then (eventually) arrayified. */ struct dumpdates { - char dd_name[NAME_MAX+3]; + char dd_name[MAXPATHLEN+3]; + struct fstab *dd_fstab; char dd_level; time_t dd_ddate; };