/***************************************************************************** * * $Id$ * Purpose ...............: MBSE BBS Outbound Manager - show node info * ***************************************************************************** * Copyright (C) 1997-2003 * * 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, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *****************************************************************************/ #include "../config.h" #include "../lib/libs.h" #include "../lib/structs.h" #include "../lib/common.h" #include "../lib/nodelist.h" #include "../lib/clcomm.h" #include "nlinfo.h" int nlinfo(faddr *addr) { node *nlent; int i, t; char flagbuf[256]; nodelist_modem **tmpm; nodelist_flag **tmpf; 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 (tmpf = &nl_online; *tmpf; tmpf = &((*tmpf)->next)) if ((nlent->oflags & (*tmpf)->value) == (*tmpf)->value) sprintf(flagbuf + strlen(flagbuf), "%s,", (*tmpf)->name); for (tmpf = &nl_request; *tmpf; tmpf = &((*tmpf)->next)) if (nlent->xflags == (*tmpf)->value) sprintf(flagbuf + strlen(flagbuf), "%s,", (*tmpf)->name); for (tmpm = &nl_pots; *tmpm; tmpm=&((*tmpm)->next)) if ((nlent->mflags & (*tmpm)->mask) == (*tmpm)->mask) sprintf(flagbuf + strlen(flagbuf), "%s,", (*tmpm)->name); for (tmpm = &nl_isdn; *tmpm; tmpm=&((*tmpm)->next)) if ((nlent->dflags & (*tmpm)->mask) == (*tmpm)->mask) sprintf(flagbuf + strlen(flagbuf), "%s,", (*tmpm)->name); for (tmpm = &nl_tcpip; *tmpm; tmpm=&((*tmpm)->next)) if ((nlent->iflags & (*tmpm)->mask) == (*tmpm)->mask) sprintf(flagbuf + strlen(flagbuf), "%s,", (*tmpm)->name); flagbuf[strlen(flagbuf)-1] = '\0'; 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"); 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("Region : %u\n", nlent->region); printf("URL : %s\n", printable(nlent->url, 0)); } if (nlent->addr.domain) free(nlent->addr.domain); if (nlent->url) free(nlent->url); return 0; }