diff options
author | Günther Deschner <gd@samba.org> | 2006-09-20 19:00:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:19:05 -0500 |
commit | 218a4ca176672a1248346fc8eab710f536eb3a17 (patch) | |
tree | 71ee0761745e4d6eeb6770c2c502b9d17fe9c01d /source4/librpc/idl/dfs.idl | |
parent | 9ee940e87762fc53aff3f01fed05ec917cda0473 (diff) | |
download | samba-218a4ca176672a1248346fc8eab710f536eb3a17.tar.gz samba-218a4ca176672a1248346fc8eab710f536eb3a17.tar.bz2 samba-218a4ca176672a1248346fc8eab710f536eb3a17.zip |
r18734: Add flag to distinguish a standalone from a domain based DFS root.
Guenther
(This used to be commit 5d9941acdbce2cab63dbd09d3fff84ac8edb20c3)
Diffstat (limited to 'source4/librpc/idl/dfs.idl')
-rw-r--r-- | source4/librpc/idl/dfs.idl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/librpc/idl/dfs.idl b/source4/librpc/idl/dfs.idl index 26533dfedf..4f450ca28b 100644 --- a/source4/librpc/idl/dfs.idl +++ b/source4/librpc/idl/dfs.idl @@ -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; |