source: MondoRescue/branches/stable/mondo/src/common/libmondo-stream.h@ 889

Last change on this file since 889 was 684, checked in by bcornec, 18 years ago

Attempt to fix Bug #7820 Does not backup a file greater than 2 GB
Report from taps23@…
Changed legnth_of_file to off_t for ftello support and all relative changes made as well in various functions to be consistent

  • Property svn:keywords set to Id
File size: 2.0 KB
Line 
1/* libmondo-stream.h
2 * $Id: libmondo-stream.h 684 2006-06-26 11:12:48Z bcornec $
3 */
4
5
6
7int closein_tape(struct s_bkpinfo *bkpinfo);
8int closeout_tape(struct s_bkpinfo *bkpinfo);
9int find_tape_device_and_size(char *dev, char *siz);
10void insist_on_this_tape_number(int tapeno);
11void log_tape_pos(void);
12int maintain_collection_of_recent_archives(char *td, char *latest_fname);
13int openin_cdstream(struct s_bkpinfo *bkpinfo);
14int openin_tape(struct s_bkpinfo *bkpinfo);
15int openout_cdstream(char *cddev, int speed);
16int openout_tape(char *tapedev, long internal_tape_block_size);
17int read_file_from_stream_to_file(struct s_bkpinfo *bkpinfo, char *outfile,
18 long long size);
19int read_file_from_stream_to_stream(struct s_bkpinfo *bkpinfo, FILE * fout,
20 long long size);
21int read_file_from_stream_FULL(struct s_bkpinfo *bkpinfo, char *outfname,
22 FILE * foutstream, long long orig_size);
23int read_header_block_from_stream(long long *plen, char *filename,
24 int *pcontrol_char);
25int register_in_tape_catalog(t_archtype type, int number, long aux,
26 char *fn);
27bool should_we_write_to_next_tape(long mediasize,
28 off_t length_of_incoming_file);
29int skip_incoming_files_until_we_find_this_one(char
30 *the_file_I_was_reading);
31int start_to_read_from_next_tape(struct s_bkpinfo *bkpinfo);
32int start_to_write_to_next_tape(struct s_bkpinfo *bkpinfo);
33int write_backcatalog_to_tape(struct s_bkpinfo *bkpinfo);
34int write_data_disks_to_stream(char *fname);
35int write_file_to_stream_from_file(struct s_bkpinfo *bkpinfo,
36 char *infile);
37int write_header_block_to_stream(off_t length_of_incoming_file,
38 char *filename, int control_char);
39void wrong_marker(int should_be, int it_is);
40int closein_cdstream(struct s_bkpinfo *bkpinfo);
41int read_EXAT_files_from_tape(struct s_bkpinfo *bkpinfo,
42 long long *ptmp_size, char *tmp_fname,
43 int *pctrl_chr, char *xattr_fname,
44 char *acl_fname);
45int write_EXAT_files_to_tape(struct s_bkpinfo *bkpinfo, char *xattr_fname,
46 char *acl_fname);
Note: See TracBrowser for help on using the repository browser.