Deleted Added
full compact
cd9660_mount.h (74096) cd9660_mount.h (120492)
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).

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)cd9660_mount.h 8.1 (Berkeley) 5/24/95
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).

--- 22 unchanged lines hidden (view full) ---

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)cd9660_mount.h 8.1 (Berkeley) 5/24/95
39 * $FreeBSD: head/sys/fs/cd9660/cd9660_mount.h 74096 2001-03-11 10:05:08Z bp $
39 * $FreeBSD: head/sys/fs/cd9660/cd9660_mount.h 120492 2003-09-26 20:26:25Z fjoe $
40 */
41
42/*
43 * Arguments to mount ISO 9660 filesystems.
44 */
45struct iso_args {
46 char *fspec; /* block special device to mount */
47 struct export_args export; /* network export info */
48 int flags; /* mounting flags, see below */
49 int ssector; /* starting sector, 0 for 1st session */
40 */
41
42/*
43 * Arguments to mount ISO 9660 filesystems.
44 */
45struct iso_args {
46 char *fspec; /* block special device to mount */
47 struct export_args export; /* network export info */
48 int flags; /* mounting flags, see below */
49 int ssector; /* starting sector, 0 for 1st session */
50 char *cs_disk; /* disk charset for Joliet cs conversion */
51 char *cs_local; /* local charset for Joliet cs conversion */
50};
51#define ISOFSMNT_NORRIP 0x00000001 /* disable Rock Ridge Ext.*/
52#define ISOFSMNT_GENS 0x00000002 /* enable generation numbers */
53#define ISOFSMNT_EXTATT 0x00000004 /* enable extended attributes */
54#define ISOFSMNT_NOJOLIET 0x00000008 /* disable Joliet Ext.*/
55#define ISOFSMNT_BROKENJOLIET 0x00000010/* allow broken Joliet disks */
52};
53#define ISOFSMNT_NORRIP 0x00000001 /* disable Rock Ridge Ext.*/
54#define ISOFSMNT_GENS 0x00000002 /* enable generation numbers */
55#define ISOFSMNT_EXTATT 0x00000004 /* enable extended attributes */
56#define ISOFSMNT_NOJOLIET 0x00000008 /* disable Joliet Ext.*/
57#define ISOFSMNT_BROKENJOLIET 0x00000010/* allow broken Joliet disks */
58#define ISOFSMNT_KICONV 0x00000020 /* Use libiconv to convert chars */