Imported Upstream version 3.3.2
[debian/amanda] / server-src / xfer-server.h
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 2009-2012 Zmanda, Inc.  All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published
7  * by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17  *
18  * Contact information: Zmanda Inc., 465 S. Mathilda Ave., Suite 300
19  * Sunnyvale, CA 94085, USA, or: http://www.zmanda.com
20  */
21
22 #ifndef XFER_SERVER_H
23 #define XFER_SERVER_H
24
25 #include "amxfer.h"
26
27 /* A transfer source that reads from a holding file, following CONT_FILENAME
28  * from one chunk to the next.  If the downstream element is an XferDestTaper,
29  * this source will call its cache_inform method for each chunk.
30  *
31  * Implemented in xfer-source-holding.c
32  *
33  * @param device: holding filename
34  * @param send_cache_inform: TRUE if this element should call cache_inform on
35  *      the xfer's destination element
36  * @return: new element
37  */
38 XferElement *xfer_source_holding(
39     const char *filename);
40
41 guint64
42 xfer_source_holding_get_bytes_read(
43     XferElement *elt);
44
45 #endif