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