diff options
author | Günther Deschner <gd@samba.org> | 2008-09-23 08:31:34 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-09-23 09:37:23 +0200 |
commit | 9421ecac33b79dcb56b685c2b17d32cff7524331 (patch) | |
tree | 13ab82fe8dd013038f6dddefa1d31e9aef36a981 | |
parent | f093ddbc111ccdfe0995d40d24bed94a3d62deb6 (diff) | |
download | samba-9421ecac33b79dcb56b685c2b17d32cff7524331.tar.gz samba-9421ecac33b79dcb56b685c2b17d32cff7524331.tar.bz2 samba-9421ecac33b79dcb56b685c2b17d32cff7524331.zip |
s3-nbt: fix nbt.idl in order to use shared nbt helper.
Guenther
-rw-r--r-- | source3/librpc/idl/nbt.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/librpc/idl/nbt.idl b/source3/librpc/idl/nbt.idl index 654f53c52f..99bffc8755 100644 --- a/source3/librpc/idl/nbt.idl +++ b/source3/librpc/idl/nbt.idl @@ -73,11 +73,11 @@ interface nbt nbt_name_type type; } nbt_name; - typedef [enum16bit] enum { + typedef [public,enum16bit] enum { NBT_QCLASS_IP = 0x01 } nbt_qclass; - typedef [enum16bit] enum { + typedef [public,enum16bit] enum { NBT_QTYPE_ADDRESS = 0x0001, NBT_QTYPE_NAMESERVICE = 0x0002, NBT_QTYPE_NULL = 0x000A, @@ -160,7 +160,7 @@ interface nbt uint8 data[length]; } nbt_rdata_data; - typedef [nodiscriminant] union { + typedef [nodiscriminant,public] union { [case(NBT_QTYPE_NETBIOS)] nbt_rdata_netbios netbios; [case(NBT_QTYPE_STATUS)] nbt_rdata_status status; [default] nbt_rdata_data data; |