]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/attr.h
First cut selection list
[bacula/bacula] / bacula / src / lib / attr.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2003-2010 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23    Bacula® is a registered trademark of Kern Sibbald.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  *   attr.h Definition of attributes packet for unpacking from tape
30  *
31  *    Kern Sibbald, June MMIII
32  *
33  */
34
35 #ifndef __ATTR_H_
36 #define __ATTR_H_ 1
37
38
39 struct ATTR {
40    int32_t stream;                    /* attribute stream id */
41    int32_t data_stream;               /* id of data stream to follow */
42    int32_t type;                      /* file type FT */
43    int32_t file_index;                /* file index */
44    int32_t LinkFI;                    /* file index to data if hard link */
45    int32_t delta_seq;                 /* delta sequence numbr */
46    uid_t uid;                         /* userid */
47    struct stat statp;                 /* decoded stat packet */
48    POOLMEM *attrEx;                   /* extended attributes if any */
49    POOLMEM *ofname;                   /* output filename */
50    POOLMEM *olname;                   /* output link name */
51    /*
52     * Note the following three variables point into the
53     *  current BSOCK record, so they are invalid after
54     *  the next socket read!
55     */
56    char *attr;                        /* attributes position */
57    char *fname;                       /* filename */
58    char *lname;                       /* link name if any */
59    JCR *jcr;                          /* jcr pointer */
60 };
61
62 #endif /* __ATTR_H_ */