home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / CEREBRUM / WAT9609.ZIP / SRC / SOCK_DBU.C < prev    next >
Text File  |  1994-11-28  |  609b  |  21 lines

  1. #include <copyright.h>
  2. #include <wattcp.h>
  3.  
  4. void sock_debugdump( sock_type *s )
  5. {
  6.     tcp_Socket *t;
  7.     udp_Socket *u;
  8.  
  9.     u = (udp_Socket *)s;
  10.     t = (tcp_Socket *)s;
  11.  
  12.     printf("next    %4x\n\r", u->next);
  13.     printf("type    %4x\n\r", u->ip_type);
  14.     printf("error %s\n\r", u->err_msg ? u->err_msg : "(NONE)");
  15.     printf("timervalue %8lx returns %sexpired\n\r",
  16.     u->usertimer, chk_timeout(u->usertimer)?"":"NOT ");
  17.     printf("udp rdata %u (%s)\n\r", u->rdatalen, u->rdata );
  18.     printf("tcp rdata %u (%s)\n\r", t->rdatalen, t->rdata );
  19.     printf("tcp state %u\n\r", t->state );
  20. }
  21.