2001-08-17 05:46:24 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
2001-12-28 12:49:51 +00:00
|
|
|
* $Id$
|
|
|
|
* Purpose ...............: MBSE BBS Outbound Manager - show node info
|
2001-08-17 05:46:24 +00:00
|
|
|
*
|
|
|
|
*****************************************************************************
|
2001-12-28 12:49:51 +00:00
|
|
|
* Copyright (C) 1997-2001
|
2001-08-17 05:46:24 +00:00
|
|
|
*
|
|
|
|
* Michiel Broek FIDO: 2:280/2802
|
|
|
|
* Beekmansbos 10
|
|
|
|
* 1971 BV IJmuiden
|
|
|
|
* the Netherlands
|
|
|
|
*
|
|
|
|
* This file is part of MBSE BBS.
|
|
|
|
*
|
|
|
|
* This BBS is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2, or (at your option) any
|
|
|
|
* later version.
|
|
|
|
*
|
|
|
|
* MBSE BBS is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with MBSE BBS; see the file COPYING. If not, write to the Free
|
|
|
|
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2002-06-30 12:48:44 +00:00
|
|
|
#include "../config.h"
|
2001-08-17 05:46:24 +00:00
|
|
|
#include "../lib/libs.h"
|
2002-06-30 12:48:44 +00:00
|
|
|
#include "../lib/memwatch.h"
|
2001-08-17 05:46:24 +00:00
|
|
|
#include "../lib/structs.h"
|
|
|
|
#include "../lib/common.h"
|
|
|
|
#include "../lib/clcomm.h"
|
|
|
|
#include "nlinfo.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int nlinfo(faddr *addr)
|
|
|
|
{
|
|
|
|
node *nlent;
|
2001-12-28 12:49:51 +00:00
|
|
|
int i, t;
|
2001-08-17 05:46:24 +00:00
|
|
|
char flagbuf[256];
|
|
|
|
|
|
|
|
if (addr == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
Syslog('s', "Search nodelist info for %s", ascfnode(addr, 0x1f));
|
|
|
|
nlent = getnlent(addr);
|
|
|
|
|
|
|
|
if (nlent->pflag != NL_DUMMY) {
|
|
|
|
colour(3, 0);
|
|
|
|
printf("System : %s\n", nlent->name);
|
|
|
|
printf("Sysop : %s@%s\n", nlent->sysop, ascinode(addr, 0x3f));
|
|
|
|
printf("Location : %s\n", nlent->location);
|
|
|
|
if (nlent->phone)
|
|
|
|
printf("Phone : %s\n", nlent->phone);
|
|
|
|
else
|
|
|
|
printf("Phone : -Unpublished-\n");
|
|
|
|
printf("Speed : %d\n", nlent->speed);
|
|
|
|
|
|
|
|
flagbuf[0] = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get all normal nodelist flags
|
|
|
|
*/
|
|
|
|
for (i = 0; fkey[i].flag != 0; i++)
|
|
|
|
if ((nlent->mflags & fkey[i].flag) == fkey[i].flag)
|
|
|
|
sprintf(flagbuf + strlen(flagbuf), "%s,", fkey[i].key);
|
|
|
|
for (i = 0; dkey[i].flag != 0; i++)
|
|
|
|
if ((nlent->dflags & dkey[i].flag) == dkey[i].flag)
|
|
|
|
sprintf(flagbuf + strlen(flagbuf), "%s,", dkey[i].key);
|
|
|
|
for (i = 0; ikey[i].flag != 0; i++)
|
|
|
|
if ((nlent->iflags & ikey[i].flag) == ikey[i].flag)
|
|
|
|
sprintf(flagbuf + strlen(flagbuf), "%s,", ikey[i].key);
|
2001-12-30 19:14:55 +00:00
|
|
|
for (i = 0; okey[i].flag != 0; i++)
|
|
|
|
if ((nlent->oflags & okey[i].flag) == okey[i].flag)
|
|
|
|
sprintf(flagbuf + strlen(flagbuf), "%s,", okey[i].key);
|
2001-08-17 05:46:24 +00:00
|
|
|
|
|
|
|
switch (nlent->xflags) {
|
|
|
|
case RQ_XA: sprintf(flagbuf + strlen(flagbuf), "XA"); break;
|
|
|
|
case RQ_XB: sprintf(flagbuf + strlen(flagbuf), "XB"); break;
|
|
|
|
case RQ_XC: sprintf(flagbuf + strlen(flagbuf), "XC"); break;
|
|
|
|
case RQ_XP: sprintf(flagbuf + strlen(flagbuf), "XP"); break;
|
|
|
|
case RQ_XR: sprintf(flagbuf + strlen(flagbuf), "XR"); break;
|
|
|
|
case RQ_XW: sprintf(flagbuf + strlen(flagbuf), "XW"); break;
|
|
|
|
case RQ_XX: sprintf(flagbuf + strlen(flagbuf), "XX"); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Flags : %s\n", flagbuf);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Show User flags
|
|
|
|
*/
|
|
|
|
flagbuf[0] = 0;
|
|
|
|
for (i = 0; nlent->uflags[i]; i++) {
|
|
|
|
sprintf(flagbuf + strlen(flagbuf), "%s,", nlent->uflags[i]);
|
|
|
|
}
|
|
|
|
if (strlen(flagbuf)) {
|
|
|
|
flagbuf[strlen(flagbuf) - 1] = 0;
|
|
|
|
printf("U-Flags : %s\n", flagbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Show P flags
|
|
|
|
*/
|
|
|
|
printf("P Flag :");
|
|
|
|
if (nlent->pflag & 0x01)
|
|
|
|
printf(" Down");
|
|
|
|
if (nlent->pflag & 0x02)
|
|
|
|
printf(" Hold");
|
|
|
|
if (nlent->pflag & 0x04)
|
|
|
|
printf(" Pvt");
|
|
|
|
if (nlent->pflag & 0x10)
|
|
|
|
printf(" ISDN");
|
|
|
|
if (nlent->pflag & 0x20)
|
|
|
|
printf(" TCP/IP");
|
|
|
|
printf("\n");
|
2001-12-28 12:49:51 +00:00
|
|
|
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");
|
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
printf("Uplink : %u/%u\n", nlent->upnet, nlent->upnode);
|
|
|
|
printf("Region : %u\n", nlent->region);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nlent->addr.domain)
|
|
|
|
free(nlent->addr.domain);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|