lintian doesn't like orphan packages with uploaders...
[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
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13  * for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18  *
19  * Contact information: Zmanda Inc., 465 S. Mathilda Ave., Suite 300
20  * Sunnyvale, CA 94085, USA, or: http://www.zmanda.com
21  */
22
23 #ifndef XFER_SERVER_H
24 #define XFER_SERVER_H
25
26 #include "amxfer.h"
27
28 /* A transfer source that reads from a holding file, following CONT_FILENAME
29  * from one chunk to the next.  If the downstream element is an XferDestTaper,
30  * this source will call its cache_inform method for each chunk.
31  *
32  * Implemented in xfer-source-holding.c
33  *
34  * @param device: holding filename
35  * @param send_cache_inform: TRUE if this element should call cache_inform on
36  *      the xfer's destination element
37  * @return: new element
38  */
39 XferElement *xfer_source_holding(
40     const char *filename);
41
42 guint64
43 xfer_source_holding_get_bytes_read(
44     XferElement *elt);
45
46 #endif