diff options
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/namequery.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/libcli/namequery.c b/source4/libcli/namequery.c index 0f21e33b859..a9464718c52 100644 --- a/source4/libcli/namequery.c +++ b/source4/libcli/namequery.c @@ -21,6 +21,14 @@ #include "includes.h" +/* A netbios node status array element. */ +struct node_status { + char name[16]; + uint8_t type; + uint8_t flags; +}; + + /* nmbd.c sets this to True. */ BOOL global_in_nmbd = False; |