summaryrefslogtreecommitdiff
path: root/lib/mlibc/options/glibc/include/netipx/ipx.h
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-07 17:28:52 -0500
committerIan Moffett <ian@osmora.org>2024-03-07 18:24:51 -0500
commitf5e48e94a2f4d4bbd6e5628c7f2afafc6dbcc459 (patch)
tree93b156621dc0303816b37f60ba88051b702d92f6 /lib/mlibc/options/glibc/include/netipx/ipx.h
parentbd5969fc876a10b18613302db7087ef3c40f18e1 (diff)
build: Build mlibc + add distclean target
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/mlibc/options/glibc/include/netipx/ipx.h')
-rw-r--r--lib/mlibc/options/glibc/include/netipx/ipx.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/lib/mlibc/options/glibc/include/netipx/ipx.h b/lib/mlibc/options/glibc/include/netipx/ipx.h
deleted file mode 100644
index 7b5c774..0000000
--- a/lib/mlibc/options/glibc/include/netipx/ipx.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef _NETIPX_IPX_H
-#define _NETIPX_IPX_H
-
-#include <mlibc-config.h>
-#include <sys/socket.h>
-#include <stdint.h>
-
-typedef struct ipx_config_data {
- unsigned char ipxcfg_auto_select_primary;
- unsigned char ipxcfg_auto_create_interfaces;
-} ipx_config_data;
-
-#define IPX_TYPE 1
-#define IPX_NODE_LEN 6
-
-struct sockaddr_ipx {
- sa_family_t sipx_family;
- uint16_t sipx_port;
- uint32_t sipx_network;
- unsigned char sipx_node[IPX_NODE_LEN];
- uint8_t sipx_type;
- unsigned char sipx_zero;
-};
-
-#define SOL_IPX 256
-
-#if __MLIBC_LINUX_OPTION
-#include <abi-bits/ioctls.h>
-
-#define SIOCAIPXITFCRT (SIOCPROTOPRIVATE)
-#define SIOCAIPXPRISLT (SIOCPROTOPRIVATE + 1)
-#define SIOCIPXCFGDATA (SIOCPROTOPRIVATE + 2)
-#endif
-
-#endif /* _NETIPX_IPX_H */