hg_debug.c
上传用户:tjescc
上传日期:2021-02-23
资源大小:419k
文件大小:0k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. #include <includes.h>
  2. #include "hosts_gatherer.h"
  3. void
  4. hg_dump_hosts(hosts)
  5.  struct hg_host * hosts;
  6. {
  7.  while(hosts && hosts->next)
  8.  {
  9.   printf("t[ %s ]tT: %dtA : %dtN : %dt(%s)n", inet_ntoa(hosts->addr),
  10.    hosts->tested, hosts->alive,
  11. hosts->cidr_netmask,
  12. hosts->hostname);
  13.   hosts = hosts->next;
  14.  }
  15. }