[Glibc-bsd-commits] r3982 - trunk/glibc-ports/kfreebsd/sys

Robert Millan rmh at alioth.debian.org
Wed Jan 18 18:40:44 UTC 2012


Author: rmh
Date: 2012-01-18 18:40:44 +0000 (Wed, 18 Jan 2012)
New Revision: 3982

Modified:
   trunk/glibc-ports/kfreebsd/sys/mount.h
Log:
Add struct oexport_args (Closes: #630203)

Modified: trunk/glibc-ports/kfreebsd/sys/mount.h
===================================================================
--- trunk/glibc-ports/kfreebsd/sys/mount.h	2012-01-18 18:36:58 UTC (rev 3981)
+++ trunk/glibc-ports/kfreebsd/sys/mount.h	2012-01-18 18:40:44 UTC (rev 3982)
@@ -192,6 +192,20 @@
 typedef struct fhandle	fhandle_t;
 
 /*
+ * Old export arguments without security flavor list
+ */
+struct oexport_args {
+	int	ex_flags;		/* export related flags */
+	uid_t	ex_root;		/* mapping for root uid */
+	struct	xucred ex_anon;		/* mapping for anonymous user */
+	struct	sockaddr *ex_addr;	/* net address to which exported */
+	__u_char ex_addrlen;		/* and the net address length */
+	struct	sockaddr *ex_mask;	/* mask of valid bits in saddr */
+	__u_char ex_masklen;		/* and the smask length */
+	char	*ex_indexfile;		/* index file for WebNFS URLs */
+};
+
+/*
  * Export arguments for local filesystem mount calls.
  */
 struct export_args {




More information about the Glibc-bsd-commits mailing list