Displaying 1 result from an estimated 1 matches for "node_status_flag".
Did you mean:
node_status_flags
2001 Oct 31
1
nmblookup status meaning
...to my program and am
using the sources from nmblookup.
Can you please help me ?
What is the meaning of these status flags and the status type or why can I
find docs ?
printf("%s <%x> - %s\n",
cleanname,
status[i].type, // <----- this one
node_status_flags(status[i].flags));
char *node_status_flags(unsigned char flags)
{
static fstring ret;
strcpy(ret,"");
// and these flags
strcat(ret, (flags & 0x80) ? "<GROUP> " : " ");
if ((flags & 0x60) == 0x00) strcat(ret,"B ");
if ((...