home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (c) 1995, NeXT Computer, Inc.
- * All Rights Reserved.
- */
-
-
- #ifndef _NM_DEFS_
- #define _NM_DEFS_
-
- /*
- * netaddr_t is declared with the kernel files,
- * in <servers/netport.h>.
- */
- #include <servers/netport.h>
-
- typedef union {
- struct {
- unsigned char ia_net_owner;
- unsigned char ia_net_node_type;
- unsigned char ia_host_high;
- unsigned char ia_host_low;
- } ia_bytes;
- netaddr_t ia_netaddr;
- } ip_addr_t;
-
- #endif _NM_DEFS_
-
-