diff options
author | Günther Deschner <gd@samba.org> | 2006-09-20 19:06:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:19:05 -0500 |
commit | f5a5cb6a1f17edf9fb0e57fd3348c4638878953a (patch) | |
tree | 9d11ba358941a50da2549de5ac16ac1f64c12848 | |
parent | 386f72bcfd4a0a6e1b859d919892c24b48343222 (diff) | |
download | samba-f5a5cb6a1f17edf9fb0e57fd3348c4638878953a.tar.gz samba-f5a5cb6a1f17edf9fb0e57fd3348c4638878953a.tar.bz2 samba-f5a5cb6a1f17edf9fb0e57fd3348c4638878953a.zip |
r18737: Fill in the documented dfs_Target_PriorityClass.
Guenther
(This used to be commit d2805754a242a395d0322fb6b44965f41a81c217)
-rw-r--r-- | source4/librpc/idl/dfs.idl | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source4/librpc/idl/dfs.idl b/source4/librpc/idl/dfs.idl index ab63609138..0360636465 100644 --- a/source4/librpc/idl/dfs.idl +++ b/source4/librpc/idl/dfs.idl @@ -113,8 +113,17 @@ uint32 num_stores; } dfs_Info5; + typedef [v1_enum] enum { + DFS_INVALID_PRIORITY_CLASS = -1, + DFS_SITE_COST_NORMAL_PRIORITY_CLASS = 0, + DFS_GLOBAL_HIGH_PRIORITY_CLASS = 1, + DFS_SITE_COST_HIGH_PRIORITY_CLASS = 2, + DFS_SITE_COST_LOW_PRIORITY_CLASS = 3, + DFS_GLOBAL_LOW_PRIORITY_CLASS = 4 + } dfs_Target_PriorityClass; + typedef struct { - uint16 target_priority_class; + dfs_Target_PriorityClass target_priority_class; uint16 target_priority_rank; uint16 reserved; } dfs_Target_Priority; |