1 /*
2  * Copyright (c) 1995
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley
6  * by Pace Willisson (pace@blitz.com).  The Rock Ridge Extension
7  * Support code is derived from software contributed to Berkeley
8  * by Atsushi Murai (amurai@spec.co.jp).
9  *
10  * %sccs.include.redist.c%
11  *
12  *	@(#)cd9660_mount.h	8.1 (Berkeley) 05/24/95
13  */
14 
15 /*
16  * Arguments to mount ISO 9660 filesystems.
17  */
18 struct iso_args {
19 	char	*fspec;			/* block special device to mount */
20 	struct	export_args export;	/* network export info */
21 	int	flags;			/* mounting flags, see below */
22 };
23 #define	ISOFSMNT_NORRIP	0x00000001	/* disable Rock Ridge Ext.*/
24 #define	ISOFSMNT_GENS	0x00000002	/* enable generation numbers */
25 #define	ISOFSMNT_EXTATT	0x00000004	/* enable extended attributes */
26