home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 41.ddi / root.2 / tmp / inet / arp.Space < prev    next >
Encoding:
Text File  |  1990-12-08  |  846 b   |  31 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/arp/space.c.sl 1.1 4.0 12/08/90 13197 AT&T-USL"
  11.  
  12. #include "config.h"
  13.  
  14. #include <sys/types.h>
  15. #include <sys/socket.h>
  16.  
  17. #define STRNET
  18.  
  19. #include <net/if.h>
  20. #include <netinet/in.h>
  21. #include <netinet/if_ether.h>
  22.  
  23. #define ARPTAB_BSIZ    9
  24. #define ARPTAB_NB    19
  25. #define ARPTAB_SIZE    (ARPTAB_BSIZ * ARPTAB_NB)
  26.  
  27. struct arptab    arptab[ARPTAB_SIZE];
  28. int        arptab_bsiz = ARPTAB_BSIZ;
  29. int        arptab_nb = ARPTAB_NB;
  30. int        arptab_size = ARPTAB_SIZE;
  31.