Please wait until the page is fully downloaded and then press the "Expand" button or the blue line numbers.

0096000 /*
0096001 server/ip/gen/route.h
0096002 */
0096003 
0096004 #ifndef __SERVER__IP__GEN__ROUTE_H__
0096005 #define __SERVER__IP__GEN__ROUTE_H__
0096006 
0096007 typedef struct nwio_route
0096008 {
0096009          u32_t nwr_ent_no;
0096010          u32_t nwr_ent_count;
0096011          ipaddr_t nwr_dest;
0096012          ipaddr_t nwr_netmask;
0096013          ipaddr_t nwr_gateway;
0096014          u32_t nwr_dist;
0096015          u32_t nwr_flags;
0096016          u32_t nwr_pref;
0096017          u32_t nwr_mtu;              /* Ignored, compatibility with VMD */
0096018          ipaddr_t nwr_ifaddr;
0096019 } nwio_route_t;
0096020 
0096021 #define NWRF_EMPTY              0
0096022 #define NWRF_INUSE              1
0096023 #define NWRF_STATIC              2
0096024 #define NWRF_UNREACHABLE       4
0096025 
0096026 #endif /* __SERVER__IP__GEN__ROUTE_H__ */
0096027 
0096028 /*
0096029  * $PchId: route.h,v 1.3 1995/11/17 22:19:50 philip Exp $
0096030  */