home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 41.ddi / root.2 / tmp / inet / tcp.Space < prev    next >
Encoding:
Text File  |  1990-12-08  |  1.2 KB  |  46 lines

  1. /*    Copyright (c) 1990 UNIX System Laboratories, Inc.    */
  2. /*    Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T    */
  3. /*      All Rights Reserved      */
  4.  
  5. /*    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF         */
  6. /*    UNIX System Laboratories, Inc.                         */
  7. /*    The copyright notice above does not evidence any       */
  8. /*    actual or intended publication of such source code.    */
  9.  
  10. #ident    "@(#)//usr/src/uts/i386/master.d/tcp/space.c.sl 1.1 4.0 12/08/90 27163 AT&T-USL"
  11.  
  12. #define STRNET
  13.  
  14. #include <netinet/symredef.h>
  15. #include <sys/types.h>
  16. #include <sys/param.h>
  17. #include <sys/systm.h>
  18. #include <sys/stream.h>
  19. #include <sys/socket.h>
  20. #include <sys/socketvar.h>
  21. #include <sys/protosw.h>
  22. #include <sys/errno.h>
  23. #include <sys/cmn_err.h>
  24. #include <net/route.h>
  25. #include <net/if.h>
  26. #include <netinet/in.h>
  27. #include <netinet/in_pcb.h>
  28. #include <netinet/in_systm.h>
  29. #include <netinet/ip.h>
  30. #include <netinet/ip_var.h>
  31. #include <netinet/tcp.h>
  32. #include <netinet/tcp_fsm.h>
  33. #include <netinet/tcp_seq.h>
  34. #include <netinet/tcp_timer.h>
  35. #include <netinet/tcp_var.h>
  36. #include <netinet/tcpip.h>
  37. #include <netinet/tcp_debug.h>
  38.  
  39. #define NTCP        512
  40. #define TCPDEBUG    4
  41.  
  42. unsigned char        tcp_dev[(NTCP+7)/8];
  43. int            ntcp = NTCP;
  44. struct tcp_debug    tcp_debug[TCPDEBUG];
  45. int            tcp_ndebug = TCPDEBUG;
  46.