OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
include
/
linux
/
lockd
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
bind.h
2.11 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
debug.h
871 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
lockd.h
11.25 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
nlm.h
1.32 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
share.h
878 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
xdr.h
2.9 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
xdr4.h
1.65 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: share.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ /* * linux/include/linux/lockd/share.h * * DOS share management for lockd. * * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> */ #ifndef LINUX_LOCKD_SHARE_H #define LINUX_LOCKD_SHARE_H /* * DOS share for a specific file */ struct nlm_share { struct nlm_share * s_next; /* linked list */ struct nlm_host * s_host; /* client host */ struct nlm_file * s_file; /* shared file */ struct xdr_netobj s_owner; /* owner handle */ u32 s_access; /* access mode */ u32 s_mode; /* deny mode */ }; __be32 nlmsvc_share_file(struct nlm_host *, struct nlm_file *, struct nlm_args *); __be32 nlmsvc_unshare_file(struct nlm_host *, struct nlm_file *, struct nlm_args *); void nlmsvc_traverse_shares(struct nlm_host *, struct nlm_file *, nlm_host_match_fn_t); #endif /* LINUX_LOCKD_SHARE_H */