Displaying 1 result from an estimated 1 matches for "_linux_smb_fs_h".
1998 Sep 04
0
Linux SMB Mount utils patch
..._fs.h
--- samba-1.9.18p10-orig/source/smb_fs.h Wed Dec 31 16:00:00 1969
+++ samba-1.9.18p10/source/smb_fs.h Thu Sep 3 12:54:45 1998
@@ -0,0 +1,224 @@
+/*
+ * smb_fs.h
+ *
+ * Copyright (C) 1995 by Paal-Kr. Engstad and Volker Lendecke
+ * Copyright (C) 1997 by Volker Lendecke
+ *
+ */
+
+#ifndef _LINUX_SMB_FS_H
+#define _LINUX_SMB_FS_H
+
+#include <linux/smb.h>
+
+/*
+ * ioctl commands
+ */
+#define SMB_IOC_GETMOUNTUID _IOR('u', 1, __kernel_uid_t)
+#define SMB_IOC_NEWCONN _IOW('u', 2, struct smb_conn_opt)
+
+#ifdef __KERNEL__
+
+#include <asm/unaligned.h>
+
+#d...