diff options
author | Andrew Bartlett <abartlet@samba.org> | 2009-09-19 14:20:43 -0700 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2009-09-19 14:34:16 -0700 |
commit | 59bea8436267cbb6d6b1501af31b8948509b3bd4 (patch) | |
tree | d621b7ef132aef911d789696c6b1d2856c86e35c /libcli/nbt | |
parent | d58976012eada94d55eb3ac89fd1601291167232 (diff) | |
download | samba-59bea8436267cbb6d6b1501af31b8948509b3bd4.tar.gz samba-59bea8436267cbb6d6b1501af31b8948509b3bd4.tar.bz2 samba-59bea8436267cbb6d6b1501af31b8948509b3bd4.zip |
libcli:nbt move prototypes of lmhosts functions to libnbt.h
Diffstat (limited to 'libcli/nbt')
-rw-r--r-- | libcli/nbt/libnbt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libcli/nbt/libnbt.h b/libcli/nbt/libnbt.h index a37a213b08..2abcb56971 100644 --- a/libcli/nbt/libnbt.h +++ b/libcli/nbt/libnbt.h @@ -24,7 +24,7 @@ #include "librpc/gen_ndr/nbt.h" #include "librpc/ndr/libndr.h" - +#include "system/network.h" /* possible states for pending requests */ @@ -355,4 +355,9 @@ NTSTATUS nbt_name_register_wins_recv(struct composite_context *c, TALLOC_CTX *me struct nbt_name_register_wins *io); +XFILE *startlmhosts(const char *fname); +bool getlmhostsent(TALLOC_CTX *ctx, XFILE *fp, char **pp_name, int *name_type, + struct sockaddr_storage *pss); +void endlmhosts(XFILE *fp); + #endif /* __LIBNBT_H__ */ |