/* * Copyright (c) 1983 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ #ifndef lint static char sccsid[] = "@(#)host.c 5.2 (Berkeley) 9/27/85"; #endif not lint #include #include #include #include #include extern int kmem; extern int nflag; extern char *inetname(); /* * Print the host tables associated with the ARPANET IMP. * Symbolic addresses are shown unless the nflag is given. */ hostpr(hostsaddr) off_t hostsaddr; { struct mbuf *hosts, mb; register struct mbuf *m; register struct hmbuf *mh; register struct host *hp; char flagbuf[10], *flags; int first = 1; if (hostsaddr == 0) { printf("hosts: symbol not in namelist\n"); return; } klseek(kmem, hostsaddr, 0); read(kmem, &hosts, sizeof (hosts)); m = hosts; printf("IMP Host Table\n"); printf("%-5.5s %-15.15s %-4.4s %-9.9s %-4.4s %s\n", "Flags", "Host", "Qcnt", "Q Address", "RFNM", "Timer"); while (m) { klseek(kmem, m, 0); read(kmem, &mb, sizeof (mb)); m = &mb; mh = mtod(m, struct hmbuf *); if (mh->hm_count == 0) { m = m->m_next; continue; } for (hp = mh->hm_hosts; hp < mh->hm_hosts + HPMBUF; hp++) { if ((hp->h_flags&HF_INUSE) == 0 && hp->h_timer == 0) continue; flags = flagbuf; *flags++ = hp->h_flags&HF_INUSE ? 'A' : 'F'; if (hp->h_flags&HF_DEAD) *flags++ = 'D'; if (hp->h_flags&HF_UNREACH) *flags++ = 'U'; *flags = '\0'; printf("%-5.5s %-15.15s %-4d %-9x %-4d %d\n", flagbuf, inetname(hp->h_addr), hp->h_qcnt, hp->h_q, hp->h_rfnm, hp->h_timer); } m = m->m_next; } }