source: MondoRescue/branches/3.1/mondo/src/common/mondostructures.h@ 3147

Last change on this file since 3147 was 3147, checked in by Bruno Cornec, 11 years ago
  • First pass on svn merge -r 2935:3146 ../3.0
  • Property svn:keywords set to Id
File size: 20.3 KB
RevLine 
[1]1/***************************************************************************
2 mondostructures.h - description
3 -------------------
4 begin : Fri Apr 19 2002
5 copyright : (C) 2002 by Stan Benoit
6 email : troff@nakedsoul.org
[128]7 cvsid : $Id: mondostructures.h 3147 2013-06-19 06:34:46Z bruno $
[1]8 ***************************************************************************/
9
10/***************************************************************************
11 * *
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
16 * *
17 ***************************************************************************/
18
19
20/**
21 * @file
22 * The header file defining all of Mondo's structures.
23 */
24
25
26/** @def MAX_NOOF_MEDIA The maximum number of media that can be used in any one backup. */
27///* So we can override it in config.h: */
28//#ifndef MAX_NOOF_MEDIA
29#define MAX_NOOF_MEDIA 50
30//#endif
31
32/**
33 * Structure indicating one entry in the mountlist.
34 * There is one mountlist_line for each device we're keeping track of in the mountlist.
35 */
[128]36struct mountlist_line {
[1]37 /**
38 * The name of the device (/dev entry) for this mountlist line. Guaranteed to be unique.
39 */
[128]40 char device[64];
[1]41
42 /**
43 * The mountpoint for this mountlist line. Should be unique.
44 * This can be "raid", for a RAID subdisk, or "lvm", for an LVM PV.
45 */
[128]46 char mountpoint[256];
[1]47
48 /**
49 * The filesystem type of this entry. Examples: ext2, ext3, reiserfs, xfs, swap.
50 * Also, this can be "raid", for a RAID subdisk, or "lvm", for an LVM PV.
51 */
[128]52 char format[64];
[1]53
54 /**
55 * The size in kilobytes of this device. 0 or -1 indicates LVM.
56 */
[128]57 long long size;
[1]58
59 /**
[1899]60 * For ext2 and ext3, this is the filesystem label or uuid (if there is one). If not, this should be "".
[1]61 */
[128]62 char label[256];
[1295]63
[1]64};
65
66/**
67 * The mountlist structure.
68 * This is used to keep track of a list of all the devices/partitions/formats/sizes/labels in the
69 * system, so we can recreate them in a nuke restore.
70 */
[128]71struct mountlist_itself {
[1]72 /**
73 * Number of entries in the mountlist.
74 */
[128]75 int entries;
[1]76
77 /**
78 * The list of entries, all @p entries of them.
79 */
[2188]80 struct mountlist_line el[MAX_MOUNTLIST_ENTRIES];
[1]81};
82
83/**
84 * A structure which holds references to elements of the mountlist.
85 * This is used in resize_drive_proportionately_to_fit_new_drives() to
86 * ensure accurate resizing.
87 */
[128]88struct mountlist_reference {
[1]89 /**
90 * The number of entries in the list of mountlist references.
91 */
[128]92 int entries;
[1]93
94 /**
95 * The array of mountlist_line, allocated on demand.
96 */
[128]97 struct mountlist_line **el;
[1]98};
99
100/**
101 * A line in @p additional_raid_variables.
102 */
[128]103struct raid_var_line {
[1]104 /**
105 * The label for this RAID variable.
106 */
[128]107 char label[64];
[1]108
109 /**
110 * The value for this RAID variable.
111 */
[128]112 char value[64];
[1]113};
114
115/**
116 * The additional RAID variables structure.
117 * This is used to store a list of additional variables to be put in the raidtab,
118 * to allow users to use (new) features of RAID which Mondo doesn't (yet) support directly.
119 * Each @p raid_device_record has one.
120 */
[128]121struct additional_raid_variables {
[1]122 /**
123 * The number of entries in the list.
124 */
[128]125 int entries;
[1]126
127 /**
128 * The list of entries, all @p entries of them.
129 */
[128]130 struct raid_var_line el[MAXIMUM_ADDITIONAL_RAID_VARS];
[1]131};
132
133/**
134 * One disk in a @p list_of_disks.
135 */
[128]136struct s_disk {
[1]137#ifdef __FreeBSD__
[128]138 /**
[1]139 * The name of this disk. If blank it will eventually get filled in automatically.
140 */
[128]141 char name[64];
[1]142#endif
143 /**
144 * The device this entry describes.
145 */
[128]146 char device[64];
[1]147
148 /**
149 * Index number of this entry in the whole disklist.
150 */
[128]151 int index;
[1967]152
[558]153 /**
154 * Type of disk.
155 */
156 char type; // ' ' = data (default), S = spare, F = faulty
[1967]157
[1]158};
159
160/**
161 * A list of @p s_disk. Every @p raid_device_record has four.
162 */
[128]163struct list_of_disks {
[1]164 /**
165 * The number of entries in the disklist.
166 */
[128]167 int entries;
[1]168
169 /**
170 * The entries themselves, all @p entries of them.
171 */
[128]172 struct s_disk el[MAXIMUM_DISKS_PER_RAID_DEV];
[1]173};
174
175/**
176 * A type of media we're backing up to.
177 */
[128]178typedef enum { none = 0, ///< No type has been set yet.
179 iso, ///< Back up to ISO images.
180 cdr, ///< Back up to recordable CDs (do not erase them).
181 cdrw, ///< Back up to CD-RWs and blank them first.
182 dvd, ///< Back up to DVD+R[W] or DVD-R[W] disks.
183 cdstream, ///< Back up to recordable CDs but treat them like a tape streamer.
[2382]184 netfs, ///< Back up to an NETFS mount on the local subnet.
[128]185 tape, ///< Back up to tapes.
[1687]186 usb, ///< Back up to USB devices.
[128]187 udev ///< Back up to another unsupported device; just send a stream of bytes.
188} t_bkptype;
[1]189
190/**
191 * A type of file in the catalog of recent archives.
192 */
[3147]193typedef enum {
194 other, ///< Some other kind of file.
[128]195 fileset, ///< An afioball (fileset), optionally compressed.
196 biggieslice ///< A slice of a biggiefile, optionally compressed.
197} t_archtype;
[1]198
[1967]199/**
200 * A type of file in the catalog of recent archives.
201 */
202typedef enum {
203 nuke = 0, /// Nuke mode
[3147]204 interactive, /// Interactive mode
[1967]205 compare, /// Compare mode
206 mbr, /// MBR mode
207 isoonly, /// ISO mode
208 isonuke, /// ISO+Nuke mode
209} t_restore_mode;
[1]210
[1967]211
[1]212#ifdef __FreeBSD__
213
[128]214struct vinum_subdisk {
215 char which_device[64];
216};
[1]217
[128]218struct vinum_plex {
219 int raidlevel;
220 int stripesize;
221 int subdisks;
222 struct vinum_subdisk sd[MAXIMUM_RAID_DEVS];
223};
224
225struct vinum_volume {
226 char volname[64];
227 int plexes;
228 struct vinum_plex plex[9];
229};
230
231struct raidlist_itself {
232 int entries;
233 struct list_of_disks spares;
234 struct list_of_disks disks;
235 struct vinum_volume el[MAXIMUM_RAID_DEVS];
236};
237
[1]238#else
239
[128]240 /**
[1]241 * A RAID device in the raidlist.
242 */
[128]243struct raid_device_record {
[1]244 /**
245 * The name of the RAID device (e.g. /dev/md0).
246 */
[128]247 char raid_device[64];
[1]248
249 /**
250 * The RAID level (-1 to 5) we're using.
251 */
[128]252 int raid_level;
[1]253
254 /**
255 * Whether the disk has a persistent superblock.
256 */
[128]257 int persistent_superblock;
[1]258
259 /**
260 * The chunk size of this RAID device.
261 */
[128]262 int chunk_size;
[1967]263
[558]264 /**
265 * The parity algorithm of this RAID device. (RAID5 only)
266 */
267 int parity; // 0=left-asymmetric, 1=right-asymmetric, 2=left-symmetric, 3=right-symmetric
[1]268
269 /**
270 * A list of the disks to use for storing data.
271 */
[128]272 struct list_of_disks data_disks;
[1]273
274 /**
275 * A list of the disks to use as "hot spares" in case one dies.
276 */
[128]277 struct list_of_disks spare_disks;
[1]278
279 /**
280 * A list of the disks to use for storing parity information.
281 */
[128]282 struct list_of_disks parity_disks;
[1]283
284 /**
285 * A list of the disks in this RAID device that have failed\. Rare.
286 */
[128]287 struct list_of_disks failed_disks;
[1]288
289 /**
290 * The additional RAID variables for this device.
291 */
[128]292 struct additional_raid_variables additional_vars;
[558]293
294 /**
295 * Resync progress for this device.
296 */
297 int progress;
[128]298};
[1]299
[128]300 /**
[1]301 * The list of RAID devices.
302 * This is intended to be used along with the mountlist, and it can be
303 * directly loaded from/saved to raidtab format.
304 */
[128]305struct raidlist_itself {
[1]306 /**
307 * The number of entries in the list.
308 */
[128]309 int entries;
[1]310
311 /**
312 * The RAID devices in the raidlist, all @p entries of them.
313 */
[128]314 struct raid_device_record el[MAXIMUM_RAID_DEVS];
315};
[1]316
317#endif
318
319/**
320 * The backup information structure.
321 *
322 * This is the central structure to all the activity going on inside Mondo.
323 * It is passed to almost every function that is not just a helper, even those
324 * which only use one variable of it, because it is useful keeping all the information
325 * together in one place. The usage of particular fields in the bkpinfo is marked in
326 * function documentation, but it is best to fill out as many fields as apply, because
327 * that function may in turn pass the bkpinfo to other functions which use other fields.
328 *
[2321]329 * To fill out the bkpinfo first call init_bkpinfo() and pre_param_configuration(). Then set
[1]330 * the backup-specific parameters (see mondo/mondoarchive/mondo-cli.c-\>process_switches for
331 * an example). After that, you should call post_param_configuration() to set some final
332 * parameters based on those you have already set. Failure to do the last step will result in
333 * extremely strange and hard-to-track errors in chop_filelist(), since optimal_set_size is 0.
334 */
[128]335struct s_bkpinfo {
[1]336 /**
337 * The device we're backing up to.
338 * If backup_media_type is @b cdr, @b cdrw, or @b cdstream, this should be the SCSI node (e.g. 0,1,0).
[1687]339 * If backup_media_type is @b dvd, @b tape, @b usb or @b udev, this should be a /dev entry.
[1]340 * If backup_media_type is anything else, this should be blank.
341 */
[2325]342 char *media_device;
[1]343
344 /**
345 * An array containing the sizes of each media in our backup set, in MB.
346 * For example, media 1's size would be stored in media_size[1].
347 * Element 0 is unused.
348 * If the size should be autodetected, make it -1 (preferable) or 0.
349 * @bug This should probably be only one variable, not an array.
350 */
[128]351 long media_size[MAX_NOOF_MEDIA + 1];
[1]352
353 /**
354 * The boot loader that is installed. Available choices are:
355 * - 'G' for GRUB
356 * - 'L' for LILO
357 * - 'E' for ELILO
358 * - (FreeBSD only) 'B' for boot0
359 * - (FreeBSD only) 'D' for dangerously dedicated
360 * - 'R' for Raw
361 * - 'U' for Unknown or None
362 *
363 * The function which_boot_loader() can help you set this.
364 */
[128]365 char boot_loader;
[1]366
367 /**
368 * The boot device on which @p boot_loader is installed.
369 * This is a bit difficult to autodetect; you may want
370 * to take truncate_to_drive_name() of where_is_root_mounted().
371 */
[2326]372 char *boot_device;
[1]373
374 /**
375 * The compression program to use. Currently supported
376 * choices are lzop and bzip2; gzip may also work. This is ignored if
377 * compression_level is 0.
378 */
[2326]379 char *zip_exe;
[1]380
381 /**
382 * The extension your compression program uses. lzop uses lzo, bzip uses
[2338]383 * bz2, gzip uses gz, lzma uses lzma etc. Do not include the dot.
[1]384 */
[2327]385 char *zip_suffix;
[1]386
387 /**
388 * Devices to back up as biggiefiles.
389 *
390 * This is useful for backing up NTFS partitions.
[296]391 * @c ntfsclone is used to back up only the used sectors, so the space tradeoff is not bad.
[1]392 * However, several caveats apply to such a partition:
393 * - It must not be mounted during the backup
[296]394 * - It must be in a format that ntfsclone knows how to handle, i.e. NTFS
[1]395 * - It cannot be verified during the verify or compare phase
396 * - It may not be resized or selectively restored at restore-time (all or nothing)
397 *
398 * This is a useful feature, but use at your own risk.
399 */
[2327]400 char *image_devs;
[1]401
402 /**
403 * The compression level (1-9) to use. 0 disables compression.
404 */
[128]405 int compression_level;
[1]406
407 /**
408 * If TRUE, then use @c lzop to compress data.
409 * This is used mainly in estimates. The backup/restore may or may
410 * not work if you do not set this. You should also set @p zip_exe
411 * and @p zip_suffix.
412 */
[128]413 bool use_lzo;
[1]414
415 /**
[998]416 * If TRUE, then use @c gzip to compress data.
417 * This is used mainly in estimates. The backup/restore may or may
418 * not work if you do not set this. You should also set @p zip_exe
419 * and @p zip_suffix.
420 */
421 bool use_gzip;
422
[2338]423/**
424 * If TRUE, then use @c lzma to compress data.
425 * This is used mainly in estimates. The backup/restore may or may
426 * not work if you do not set this. You should also set @p zip_exe
427 * and @p zip_suffix.
428 */
429 bool use_lzma;
430
[998]431 /**
[1]432 * If TRUE, then we should verify a backup.
433 */
[128]434 bool verify_data;
[1]435
436 /**
437 * If TRUE, then we should back up some data.
438 */
[128]439 bool backup_data;
[1]440
441 /**
442 * If TRUE, then we should restore some data.
443 */
[128]444 bool restore_data;
[1]445
[128]446
[1]447 /**
448 * If TRUE, then we should backup/restore using star, not afio
449 */
[128]450 bool use_star;
[1]451
[128]452
[1]453 /**
454 * Size of internal block reads/writes
455 */
[128]456 long internal_tape_block_size;
457
[1]458 /**
459 * If TRUE, we're making a CD that will autonuke without confirmation when booted.
460 */
[128]461 bool disaster_recovery;
[1]462
463 /**
464 * The directory we're backing up to.
465 * If backup_media_type is @b iso, then this is that directory.
466 * If backup_media_type is anything else, this is ignored.
467 */
[2323]468 char *isodir;
[1]469
[20]470/**
471 * The prefix to put in front of media number
472 * If backup_media_type is @b iso, then this is the prefix for the filename
473 * If backup_media_type is anything else, this is ignored.
474 */
[2322]475 char *prefix;
[20]476
[1]477 /**
478 * The scratch directory to use.
479 * This is the "stage" that the CD image is made directly from.
480 * As such, it needs to be at least as large as the largest CD/DVD/ISO.
481 */
[2320]482 char *scratchdir;
[1]483
484 /**
485 * The temp directory to use.
486 * This is where filesets are stored by the archival threads before
487 * the main thread moves them to the scratchdir. You don't need a lot
488 * of space here.
489 */
[2321]490 char *tmpdir;
[1]491
492 /**
493 * The optimal size for each fileset. This is set automatically in
494 * post_param_configuration() based on your @p backup_media_type; you
495 * needn't set it yourself.
496 */
[128]497 long optimal_set_size;
[1]498
499 /**
500 * The type of media we're backing up to.
501 */
[128]502 t_bkptype backup_media_type;
[1]503
504 /**
505 * Whether we should use a premade filelist or generate our own.
506 * If TRUE, then we generate our own filelist from the directories in @p include_paths.
507 * If FALSE, then we use the filelist whose name is specified in @p include_paths.
508 */
[128]509 bool make_filelist;
[1]510
511 /**
512 * Directories to back up, or (if !make_filelist) the filelist to use.
513 * In the former case, multiple directories should be separated by spaces.
514 * If you do nothing, "/" will be used.
515 */
[2320]516 char *include_paths;
[1]517
518 /**
519 * Directories to NOT back up. Ignored if make_filelist == FALSE.
520 * Multiple directories should be separated by spaces. /tmp, /proc,
521 * the scratchdir, and the tempdir are automatically excluded.
522 */
[2320]523 char *exclude_paths;
[1]524
525 /**
[2428]526 * Devices to NOT back up.
527 * Multiple devices should be separated by spaces.
528 */
529 char *exclude_devs;
530
531 /**
[1]532 * The path to restore files relative to during a restore.
533 * This is useful if you want to extract the files (to test, for example)
534 * without overwriting the old ones. Ignored during a backup.
535 */
[2327]536 char *restore_path;
[1]537
538 /**
539 * A command to call BEFORE making an ISO image.
540 */
[2328]541 char *call_before_iso;
[1]542
543 /**
544 * A command to call to make an ISO image.
545 */
[2328]546 char *call_make_iso;
[1]547
548 /**
549 * A command to call to burn the ISO image.
550 */
[2328]551 char *call_burn_iso;
[1]552
553 /**
554 * A command to call AFTER making an ISO image.
[2328]555 * BERLIOS: Never initialized in code !!
[1]556 */
[2328]557 char *call_after_iso;
[1]558
559 /**
[2462]560 * Path to the user's kernel included with Mindi.
[1]561 */
[2328]562 char *kernel_path;
[1]563
564 /**
[2382]565 * The NETFS mount to back up to/restore from.
566 * If backup_media_type is not @b netfs, this is ignored.
[1]567 * It must contain a colon, and the server's address should be in dotted-decimal IP
568 * address form. (Domain names will be resolved in post_param_configuration().)
569 */
[2382]570 char *netfs_mount;
[1]571
572 /**
[2382]573 * The directory, relative to the root of @p netfs_mount, to put
[1]574 * the backups in.
575 */
[2382]576 char *netfs_remote_dir;
[1]577
578 /**
[2382]579 * The potential user to use for NETFS backup
[2224]580 */
[2382]581 char *netfs_user;
[2224]582
583 /**
[2816]584 * The potential subdirectory under which are located ISO images on HDD (restore mode only)
585 */
586 char *subdir;
587
588 /**
[2382]589 * The protocol to use for Network backup (NFS, SSHFS, ...)
590 */
591 char *netfs_proto;
592
593 /**
[1]594 * A tarball containing a program called "usr/bin/post-nuke" that will be run
595 * after nuking the system. If "", do not use a post-nuke tarball.
596 */
[2328]597 char *postnuke_tarball;
[1]598
599 /**
600 * If TRUE, then pass cdrecord the argument "blank=fast" to wipe the CDs before
601 * writing to them. This has no effect for DVDs.
602 */
[128]603 bool wipe_media_first;
[1]604
[1967]605// patch by Herman Kuster
[1]606 /**
607 * The differential level of this backup. Currently only 0 (full backup) and 1
608 * (files changed since last full backup) are supported.
609 */
[128]610 int differential;
[1967]611// end patch
[1]612
613 /**
614 * If TRUE, then don't eject media when backing up or restoring.
615 */
[128]616 bool please_dont_eject;
[1]617
618 /**
619 * The speed of the CD-R[W] drive.
620 */
[128]621 int cdrw_speed;
[1]622
623 /**
624 * If TRUE, then cdrecord will be passed some flags to help compensate for PCs
625 * with eccentric CD-ROM drives. If it has BurnProof technology, or is in a laptop,
626 * it probably falls into this category.
627 */
[128]628 bool manual_cd_tray;
[1]629
630 /**
631 * If TRUE, do not make the first CD bootable. This is dangerous but it saves a minute
632 * or so. It is useful in testing. Use with care.
633 */
[128]634 bool nonbootable_backup;
[1]635
636 /**
637 * If TRUE, make the bootable CD use LILO/ELILO. If FALSE, use isolinux (the default).
638 */
[128]639 bool make_cd_use_lilo;
[1948]640
641 /**
642 * If TRUE, make the the tape bootable. If FALSE, normal tape, the default
643 */
644 bool use_obdr;
[1967]645
646 /**
647 * Nature of the restore
648 */
649 t_restore_mode restore_mode;
[1]650};
651
652
653
654/**
655 * A node in a directory structure.
656 * Its internals are managed by load_filelist() et al; you only need to keep track of the top node.
657 * @bug My understanding of this structure is horrendously incomplete. Could you please fill in the details?
658 */
[128]659struct s_node {
[1]660 /**
661 * The character this node contains.
662 */
[128]663 char ch;
[1]664
665 /**
666 * The node to the right of this one.
667 */
[128]668 struct s_node *right;
[1]669
670 /**
671 * The node below this one.
672 */
[128]673 struct s_node *down;
[1]674
675 /**
676 * If TRUE, then this node is selected (for restore, for example).
677 */
[128]678 bool selected;
[1]679
680 /**
681 * If TRUE, then we want to see the directories below this one.
682 */
[128]683 bool expanded;
[1]684};
685
686
687
688/**
689 * Information about one file.
690 * This is used as the "zeroth slice" of a biggiefile to be able to recreate
691 * its name, mode, owner, group, mtime, atime, and to be able to verify it in Compare Mode.
692 */
693struct s_filename_and_lstat_info {
[128]694 /**
[1]695 * The filename of the file this structure is describing.
696 */
697 char filename[MAX_STR_LEN];
698
[128]699 /**
[1]700 * The MD5 checksum (32 hex digits) of this file.
701 */
702 char checksum[64];
703
[128]704 /**
[1]705 * Unused; kept for backwards compatibility.
706 */
707 char for_backward_compatibility;
708
[128]709 /**
[1]710 * The stat buffer for this file.
711 * Generated with a call to <tt>lstat(&(struc->properties))</tt> where @p struc
712 * is the @p s_filename_and_lstat_info.
713 */
714 struct stat properties;
[296]715 bool use_ntfsprog;
[1]716};
717
718
719/**
720 * A file with associated severity if it differed in a verify or compare.
721 */
722struct s_filelist_entry {
[128]723 /**
[1]724 * The name of the file.
725 */
726 char filename[MAX_STR_LEN];
[128]727 /**
[1]728 * The severity if the file has changed between the backup and live filesystem.
729 * This is on a scale from 1 to 3, 3 being the most important. File patterns which cause
730 * a severity of 1 are:
731 * - /etc/adjtime
732 * - /etc/mtab
733 * - /var/lib/slocate
734 * - /var/lock
735 * - /var/log
736 * - /var/spool (except /var/spool/mail)
737 * - /var/run
738 * - *~
739 * - *.log
740 * - *cache*
741 * - other temporary or unimportant files
742 *
743 * File patterns which cause a severity of 2 are:
744 * - /var (except /var/lock, /var/log, /var/run, /var/spool)
745 * - /home
746 * - /root/.*
747 * - /var/lib (except /var/lib/slocate, /var/lib/rpm)
748 * - /var/spool/mail
749 *
750 * File patterns which cause a severity of 3 are:
751 * - /etc (except /etc/adjtime, /etc/mtab)
752 * - /root (except /root/.*)
753 * - /usr
754 * - /var/lib/rpm
755 * - Anything else not matched explicitly
756 *
757 * @see severity_of_difference
758 */
[128]759 int severity;
[1]760};
761
762
763/**
764 * A list of @c s_filelist_entry.
765 */
766struct s_filelist {
[128]767 /**
[1]768 * The number of entries in the list.
769 */
[128]770 int entries;
[1]771
[128]772 /**
[1]773 * The entries themselves, all @p entries of them.
774 */
775 struct s_filelist_entry el[ARBITRARY_MAXIMUM];
776};
777
778
779/**
780 * An entry in the tape catalog.
781 */
782struct s_tapecat_entry {
[128]783 /**
[1]784 * The type of archive it is (afioball, slice, or something else).
785 */
786 t_archtype type;
787
[128]788 /**
[1]789 * The filelist number or biggiefile (not slice!) number.
790 */
791 int number;
792
[128]793 /**
[1]794 * The slice number if it's a biggiefile.
795 */
796 long aux;
797
[128]798 /**
[1]799 * The tape position at the point this entry was added.
800 */
801 long long tape_posK;
802
[128]803 /**
[1]804 * The filename of the file cataloged here.
805 */
[128]806 char fname[MAX_TAPECAT_FNAME_LEN + 1];
[1]807};
808
809
810/**
811 * A tape catalog, made of a list of @p s_tapecat_entry.
812 */
813struct s_tapecatalog {
[128]814 /**
[1]815 * The number of entries in the tape catalog.
816 */
817 int entries;
818
[128]819 /**
[1]820 * The entries themselves, all @p entries of them.
821 */
822 struct s_tapecat_entry el[MAX_TAPECATALOG_ENTRIES];
823};
Note: See TracBrowser for help on using the repository browser.