]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/bsr.h
kes Apply patch from Peter Much <pmc@citylink.dinoex.sub.org> that fixes
[bacula/bacula] / bacula / src / dird / bsr.h
1 /*
2  *
3  *   Bootstrap Record header file
4  *
5  *      BSR (bootstrap record) handling routines split from
6  *        ua_restore.c July MMIII
7  *
8  *     Kern Sibbald, July MMII
9  *
10  *   Version $Id$
11  */
12
13 /*
14    Bacula® - The Network Backup Solution
15
16    Copyright (C) 2002-2006 Free Software Foundation Europe e.V.
17
18    The main author of Bacula is Kern Sibbald, with contributions from
19    many others, a complete list can be found in the file AUTHORS.
20    This program is Free Software; you can redistribute it and/or
21    modify it under the terms of version two of the GNU General Public
22    License as published by the Free Software Foundation and included
23    in the file LICENSE.
24
25    This program is distributed in the hope that it will be useful, but
26    WITHOUT ANY WARRANTY; without even the implied warranty of
27    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28    General Public License for more details.
29
30    You should have received a copy of the GNU General Public License
31    along with this program; if not, write to the Free Software
32    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
33    02110-1301, USA.
34
35    Bacula® is a registered trademark of John Walker.
36    The licensor of Bacula is the Free Software Foundation Europe
37    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
38    Switzerland, email:ftf@fsfeurope.org.
39 */
40
41
42 /* FileIndex entry in restore bootstrap record */
43 struct RBSR_FINDEX {
44    RBSR_FINDEX *next;
45    int32_t findex;
46    int32_t findex2;
47 };
48
49 /*
50  * Restore bootstrap record -- not the real one, but useful here
51  *  The restore bsr is a chain of BSR records (linked by next).
52  *  Each BSR represents a single JobId, and within it, it
53  *    contains a linked list of file indexes for that JobId.
54  *    The complete_bsr() routine, will then add all the volumes
55  *    on which the Job is stored to the BSR.
56  */
57 struct RBSR {
58    RBSR *next;                        /* next JobId */
59    JobId_t JobId;                     /* JobId this bsr */
60    uint32_t VolSessionId;
61    uint32_t VolSessionTime;
62    int      VolCount;                 /* Volume parameter count */
63    VOL_PARAMS *VolParams;             /* Volume, start/end file/blocks */
64    RBSR_FINDEX *fi;                   /* File indexes this JobId */
65 };