blob: 30f031db12f60c9c5f94a2194b09663f1b20e552 [file] [log] [blame]
Ben Cheng30692c62013-10-15 18:26:18 -07001#ifndef _IPX_H_
2#define _IPX_H_
Christopher Ferris6e3550f2016-12-12 14:51:18 -08003#include <linux/libc-compat.h> /* for compatibility with glibc netipx/ipx.h */
Ben Cheng30692c62013-10-15 18:26:18 -07004#include <linux/types.h>
5#include <linux/sockios.h>
6#include <linux/socket.h>
7#define IPX_NODE_LEN 6
8#define IPX_MTU 576
9
Christopher Ferris6e3550f2016-12-12 14:51:18 -080010#if __UAPI_DEF_SOCKADDR_IPX
Ben Cheng30692c62013-10-15 18:26:18 -070011struct sockaddr_ipx {
12 __kernel_sa_family_t sipx_family;
13 __be16 sipx_port;
14 __be32 sipx_network;
15 unsigned char sipx_node[IPX_NODE_LEN];
16 __u8 sipx_type;
17 unsigned char sipx_zero; /* 16 byte fill */
18};
Christopher Ferris6e3550f2016-12-12 14:51:18 -080019#endif /* __UAPI_DEF_SOCKADDR_IPX */
Ben Cheng30692c62013-10-15 18:26:18 -070020
21/*
22 * So we can fit the extra info for SIOCSIFADDR into the address nicely
23 */
24#define sipx_special sipx_port
25#define sipx_action sipx_zero
26#define IPX_DLTITF 0
27#define IPX_CRTITF 1
28
Christopher Ferris6e3550f2016-12-12 14:51:18 -080029#if __UAPI_DEF_IPX_ROUTE_DEFINITION
Ben Cheng30692c62013-10-15 18:26:18 -070030struct ipx_route_definition {
31 __be32 ipx_network;
32 __be32 ipx_router_network;
33 unsigned char ipx_router_node[IPX_NODE_LEN];
34};
Christopher Ferris6e3550f2016-12-12 14:51:18 -080035#endif /* __UAPI_DEF_IPX_ROUTE_DEFINITION */
Ben Cheng30692c62013-10-15 18:26:18 -070036
Christopher Ferris6e3550f2016-12-12 14:51:18 -080037#if __UAPI_DEF_IPX_INTERFACE_DEFINITION
Ben Cheng30692c62013-10-15 18:26:18 -070038struct ipx_interface_definition {
39 __be32 ipx_network;
40 unsigned char ipx_device[16];
41 unsigned char ipx_dlink_type;
42#define IPX_FRAME_NONE 0
43#define IPX_FRAME_SNAP 1
44#define IPX_FRAME_8022 2
45#define IPX_FRAME_ETHERII 3
46#define IPX_FRAME_8023 4
47#define IPX_FRAME_TR_8022 5 /* obsolete */
48 unsigned char ipx_special;
49#define IPX_SPECIAL_NONE 0
50#define IPX_PRIMARY 1
51#define IPX_INTERNAL 2
52 unsigned char ipx_node[IPX_NODE_LEN];
53};
Christopher Ferris6e3550f2016-12-12 14:51:18 -080054#endif /* __UAPI_DEF_IPX_INTERFACE_DEFINITION */
55
56#if __UAPI_DEF_IPX_CONFIG_DATA
Ben Cheng30692c62013-10-15 18:26:18 -070057struct ipx_config_data {
58 unsigned char ipxcfg_auto_select_primary;
59 unsigned char ipxcfg_auto_create_interfaces;
60};
Christopher Ferris6e3550f2016-12-12 14:51:18 -080061#endif /* __UAPI_DEF_IPX_CONFIG_DATA */
Ben Cheng30692c62013-10-15 18:26:18 -070062
63/*
64 * OLD Route Definition for backward compatibility.
65 */
66
Christopher Ferris6e3550f2016-12-12 14:51:18 -080067#if __UAPI_DEF_IPX_ROUTE_DEF
Ben Cheng30692c62013-10-15 18:26:18 -070068struct ipx_route_def {
69 __be32 ipx_network;
70 __be32 ipx_router_network;
71#define IPX_ROUTE_NO_ROUTER 0
72 unsigned char ipx_router_node[IPX_NODE_LEN];
73 unsigned char ipx_device[16];
74 unsigned short ipx_flags;
75#define IPX_RT_SNAP 8
76#define IPX_RT_8022 4
77#define IPX_RT_BLUEBOOK 2
78#define IPX_RT_ROUTED 1
79};
Christopher Ferris6e3550f2016-12-12 14:51:18 -080080#endif /* __UAPI_DEF_IPX_ROUTE_DEF */
Ben Cheng30692c62013-10-15 18:26:18 -070081
82#define SIOCAIPXITFCRT (SIOCPROTOPRIVATE)
83#define SIOCAIPXPRISLT (SIOCPROTOPRIVATE + 1)
84#define SIOCIPXCFGDATA (SIOCPROTOPRIVATE + 2)
85#define SIOCIPXNCPCONN (SIOCPROTOPRIVATE + 3)
86#endif /* _IPX_H_ */