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