From a47cb58c2f6d34dd98e3dc2dd023a259ff501643 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 3 Apr 2005 04:32:37 +0000 Subject: r6184: the beginnings of the libcli/dgram/ library, and the dgram server. Currently just listens on port 138 and parses the packets (using IDL like the rest of NBT). This allows me to develop the structures and test with real packets (This used to be commit 10d64a525349ff96695ad961a3cfeb5bc7c8844f) --- source4/nbt_server/nbt_server.h | 2 ++ 1 file changed, 2 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 6a7b14a546..e2b8584f5a 100644 --- a/source4/nbt_server/nbt_server.h +++ b/source4/nbt_server/nbt_server.h @@ -21,6 +21,7 @@ */ #include "libcli/nbt/libnbt.h" +#include "libcli/dgram/libdgram.h" /* a list of our registered names on each interface @@ -47,6 +48,7 @@ struct nbtd_interface { const char *bcast_address; const char *netmask; struct nbt_name_socket *nbtsock; + struct nbt_dgram_socket *dgmsock; struct nbtd_iface_name *names; }; -- cgit