diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-12-12 20:20:01 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-12-12 20:20:01 +0100 |
commit | cd25b6245f8185e36a365dcf4c28e7df13090d3e (patch) | |
tree | 4ee68b9d5ea6cb4633f73146963640cb6a2781c9 /source4/librpc/idl | |
parent | c4fc0b49f05f56174dc904a19d9e4dfc6d3ef523 (diff) | |
download | samba-cd25b6245f8185e36a365dcf4c28e7df13090d3e.tar.gz samba-cd25b6245f8185e36a365dcf4c28e7df13090d3e.tar.bz2 samba-cd25b6245f8185e36a365dcf4c28e7df13090d3e.zip |
Move dom_sid to the Samba 3 IDL file, remove the old definition.
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/dom_sid.idl | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/source4/librpc/idl/dom_sid.idl b/source4/librpc/idl/dom_sid.idl index 40712fc371..172dda4fae 100644 --- a/source4/librpc/idl/dom_sid.idl +++ b/source4/librpc/idl/dom_sid.idl @@ -1,34 +1,8 @@ -/* - use the same structure for dom_sid2 as dom_sid. A dom_sid2 is really - just a dom sid, but with the sub_auths represented as a conformant - array. As with all in-structure conformant arrays, the array length - is placed before the start of the structure. That's what gives rise - to the extra num_auths elemenent. We don't want the Samba code to - have to bother with such esoteric NDR details, so its easier to just - define it as a dom_sid and use pidl magic to make it all work. It - just means you need to mark a sid as a "dom_sid2" in the IDL when you - know it is of the conformant array variety -*/ -cpp_quote("#define dom_sid2 dom_sid") - -/* same struct as dom_sid but inside a 28 bytes fixed buffer in NDR */ -cpp_quote("#define dom_sid28 dom_sid") - -/* same struct as dom_sid but in a variable byte buffer, which is maybe empty in NDR */ -cpp_quote("#define dom_sid0 dom_sid") - [ pointer_default(unique) ] interface dom_sid { - typedef [public,gensize,noprint,nosize,nopull,nopush] struct { - uint8 sid_rev_num; /**< SID revision number */ - [range(0,15)] int8 num_auths; /**< Number of sub-authorities */ - uint8 id_auth[6]; /**< Identifier Authority */ - uint32 sub_auths[15]; - } dom_sid; - /* id used to identify a endpoint, possibly in a cluster */ typedef [public] struct { hyper id; |