search for: smb_mount_data

Displaying 2 results from an estimated 2 matches for "smb_mount_data".

2000 Aug 16
1
SMBFS: NLS support for kernel 2.4.0-test6
Hello. It's a thing which all Russia and, I think, many other countries need. Patch allow you to specify smb server and local IO charsets. Two new options added to smbmount: iocharset=<charset> and servercharset=<charset>. They'll passed to kernel and proc.c module makes NLS conversion if need. Patches in attachment. -------------- next part -------------- A non-text
1998 Sep 04
0
Linux SMB Mount utils patch
...98 @@ -0,0 +1,26 @@ +/* + * smb_mount.h + * + * Copyright (C) 1995, 1996 by Paal-Kr. Engstad and Volker Lendecke + * Copyright (C) 1997 by Volker Lendecke + * + */ + +#ifndef _LINUX_SMB_MOUNT_H +#define _LINUX_SMB_MOUNT_H + +#include <linux/types.h> + +#define SMB_MOUNT_VERSION 6 + +struct smb_mount_data { + int version; + __kernel_uid_t mounted_uid; /* Who may umount() this filesystem? */ + + __kernel_uid_t uid; + __kernel_gid_t gid; + __kernel_mode_t file_mode; + __kernel_mode_t dir_mode; +}; + +#endif diff -urN samba-1.9.18p10-orig/source/smbmnt.c samba-1....