diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-01-28 11:26:51 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:18 -0500 |
commit | e6ea227235b694c823a1eb17be3f0bcadc2a74a4 (patch) | |
tree | 52353acbde8370f82637fdcc3511f2e388efec15 /source4/librpc/idl/nbt.idl | |
parent | 99ecf2d95325e7b6143596760dbc2780ba246dc6 (diff) | |
download | samba-e6ea227235b694c823a1eb17be3f0bcadc2a74a4.tar.gz samba-e6ea227235b694c823a1eb17be3f0bcadc2a74a4.tar.bz2 samba-e6ea227235b694c823a1eb17be3f0bcadc2a74a4.zip |
r5054: added a nmblookup tool, based on the new nbt library
(This used to be commit 9587cbcb9ea5303b345c31a662e9cd75d7cd705d)
Diffstat (limited to 'source4/librpc/idl/nbt.idl')
-rw-r--r-- | source4/librpc/idl/nbt.idl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/librpc/idl/nbt.idl b/source4/librpc/idl/nbt.idl index 909ff502e8..e12ec6290a 100644 --- a/source4/librpc/idl/nbt.idl +++ b/source4/librpc/idl/nbt.idl @@ -82,6 +82,15 @@ interface nbt nbt_qclass question_class; } nbt_name_question; + /* these are the possible values of the NBT_NM_OWNER_TYPE + field */ + typedef enum { + NBT_NODE_B = 0x0000, + NBT_NODE_P = 0x2000, + NBT_NODE_M = 0x4000, + NBT_NODE_H = 0x6000 + } nbt_node_type; + typedef [bitmap16bit] bitmap { NBT_NM_PERMANENT = 0x0200, NBT_NM_ACTIVE = 0x0400, |