mbout now displays Txx flags

This commit is contained in:
Michiel Broek 2001-12-28 12:49:51 +00:00
parent 301dd557d1
commit 2f923ad6ba
2 changed files with 20 additions and 5 deletions

View File

@ -4371,6 +4371,7 @@ v0.33.19 26-Oct-2001
mbout: mbout:
Fixes for Sparc systems. Fixes for Sparc systems.
The node query now displays the system open times (Txx) flags.
mbtask: mbtask:
Changed to handle the External Doors flag in the lastcaller Changed to handle the External Doors flag in the lastcaller

View File

@ -1,11 +1,10 @@
/***************************************************************************** /*****************************************************************************
* *
* File ..................: mbcico/nlinfo.c * $Id$
* Purpose ...............: MBSE BBS Outbound Manager * Purpose ...............: MBSE BBS Outbound Manager - show node info
* Last modification date : 18-Dec-1999
* *
***************************************************************************** *****************************************************************************
* Copyright (C) 1997-1999 * Copyright (C) 1997-2001
* *
* Michiel Broek FIDO: 2:280/2802 * Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10 * Beekmansbos 10
@ -40,7 +39,7 @@
int nlinfo(faddr *addr) int nlinfo(faddr *addr)
{ {
node *nlent; node *nlent;
int i; int i, t;
char flagbuf[256]; char flagbuf[256];
if (addr == NULL) if (addr == NULL)
@ -115,6 +114,21 @@ int nlinfo(faddr *addr)
if (nlent->pflag & 0x20) if (nlent->pflag & 0x20)
printf(" TCP/IP"); printf(" TCP/IP");
printf("\n"); printf("\n");
if (nlent->t1) {
printf("System open : ");
t = toupper(nlent->t1);
printf("%02d:", t - 65);
if (isupper(nlent->t1))
printf("00 - ");
else
printf("30 - ");
t = toupper(nlent->t2);
printf("%02d:", t - 65);
if (isupper(nlent->t2))
printf("00\n");
else
printf("30\n");
}
printf("Uplink : %u/%u\n", nlent->upnet, nlent->upnode); printf("Uplink : %u/%u\n", nlent->upnet, nlent->upnode);
printf("Region : %u\n", nlent->region); printf("Region : %u\n", nlent->region);
} }