root/include/linux/ipx.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 struct sockaddr_ipx
   2 {
   3         short sipx_family;
   4         unsigned long  sipx_network;
   5         unsigned char sipx_node[6];
   6         short sipx_port;
   7 };
   8 
   9 struct ipx_route_def
  10 {
  11         unsigned long ipx_network;
  12         unsigned long ipx_router_network;
  13 #define IPX_ROUTE_NO_ROUTER     0
  14         unsigned char ipx_router_node[6];
  15         unsigned char ipx_device[16];
  16         unsigned short ipx_flags;
  17 #define IPX_RT_BLUEBOOK         2
  18 #define IPX_RT_ROUTED           1
  19 };
  20 
  21 #define IPX_MTU         576
  22 
  23 

/* [previous][next][first][last][top][bottom][index][help] */