1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

r18734: Add flag to distinguish a standalone from a domain based DFS root.

Guenther
(This used to be commit 5d9941acdbce2cab63dbd09d3fff84ac8edb20c3)
This commit is contained in:
Günther Deschner 2006-09-20 19:00:15 +00:00 committed by Gerald (Jerry) Carter
parent 9ee940e877
commit 218a4ca176

View File

@ -159,8 +159,13 @@
[string,charset(UTF16)] uint16 *dom_root;
} dfs_Info200;
typedef enum {
DFS_VOLUME_FLAVOR_STANDALONE = 0x100,
DFS_VOLUME_FLAVOR_AD_BLOB = 0x200
} dfs_VolumeFlavor;
typedef struct {
uinr32 flavor;
dfs_VolumeFlavor flavor;
[string,charset(UTF16)] uint16 *dom_root;
} dfs_Info300;