From 39713c703daa75becef7ae30da6930d80216e29c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 15 Feb 2005 11:14:04 +0000 Subject: r5408: - added testing for the behaviour of the special 0x1c name - added WINS server support for the 0x1c name (This used to be commit 1558a545285ae0432c70e0a3e2b132a5132e7b3b) --- source4/nbt_server/nbt_server.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source4/nbt_server/nbt_server.h') diff --git a/source4/nbt_server/nbt_server.h b/source4/nbt_server/nbt_server.h index a698ebf1a0..6a7b14a546 100644 --- a/source4/nbt_server/nbt_server.h +++ b/source4/nbt_server/nbt_server.h @@ -79,3 +79,7 @@ struct nbtd_server { return; \ } \ } while (0) + +/* this copes with the nasty hack that is the type 0x1c name */ +#define IS_GROUP_NAME(name, nb_flags) \ + ((name)->type != NBT_NAME_LOGON && (nb_flags & NBT_NM_GROUP)) -- cgit