blob: 1b4b882c1d8a9c40ce3eedd0e593bd35cd31a428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef _IPX_H_
#define _IPX_H_
struct sockaddr_ipx
{
short sipx_family;
unsigned long sipx_network;
unsigned char sipx_node[6];
short sipx_port;
unsigned char sipx_type;
};
struct ipx_route_def
{
unsigned long ipx_network;
unsigned long ipx_router_network;
#define IPX_ROUTE_NO_ROUTER 0
unsigned char ipx_router_node[6];
unsigned char ipx_device[16];
unsigned short ipx_flags;
#define IPX_RT_SNAP 8
#define IPX_RT_8022 4
#define IPX_RT_BLUEBOOK 2
#define IPX_RT_ROUTED 1
};
#define IPX_MTU 576
#endif
|