1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

netapi: Add support for info level 502 in NetShareAdd.

Signed-off-by: Hans Leidekker <hans@meelstraat.net>
Reviewed-by: Guenther Deschner <gd@samba.org>

Autobuild-User(master): Günther Deschner <gd@samba.org>
Autobuild-Date(master): Tue Nov 19 21:48:17 CET 2013 on sn-devel-104
This commit is contained in:
Hans Leidekker
2013-11-18 18:32:41 +01:00
committed by Günther Deschner
parent ec9f4d5c9b
commit 4503bdf560
4 changed files with 71 additions and 1 deletions

View File

@ -1233,6 +1233,19 @@ struct SHARE_INFO_501 {
uint32_t shi501_flags;
};
struct SHARE_INFO_502 {
const char * shi502_netname;
uint32_t shi502_type;
const char * shi502_remark;
uint32_t shi502_permissions;
uint32_t shi502_max_uses;
uint32_t shi502_current_uses;
const char * shi502_path;
const char * shi502_passwd;
uint32_t shi502_reserved;
struct security_descriptor * shi502_security_descriptor;
};
struct SHARE_INFO_1004 {
const char * shi1004_remark;
};