]> icculus.org git repositories - btb/d2x.git/blob - arch/win32/ipx_drv.h
Removed duplicate files
[btb/d2x.git] / arch / win32 / ipx_drv.h
1 /* 
2  * IPX driver interface
3  *
4  * parts from:
5  * ipx.h header file for IPX for the DOS emulator
6  *              Tim Bird, tbird@novell.com
7  */
8 #ifndef _IPX_DRV_H
9 #define _IPX_DRV_H
10 #define IPX_MANUAL_ADDRESS
11
12 #include "types.h"
13
14 #define MAX_PACKET_DATA         1500
15
16 #ifdef _MSC_VER
17 #pragma pack (push, 1)
18 #endif
19
20 typedef struct IPXAddressStruct {
21   u_char Network[4] __pack__;
22   u_char Node[6] __pack__;
23   u_char Socket[2] __pack__;
24 } IPXAddress_t;
25
26 typedef struct IPXPacketStructure {
27   u_short Checksum __pack__;
28   u_short Length __pack__;
29   u_char TransportControl __pack__;
30   u_char PacketType __pack__;
31   IPXAddress_t Destination __pack__;
32   IPXAddress_t Source __pack__;
33 } IPXPacket_t;
34
35 #ifdef _MSC_VER
36 #pragma pack (pop)
37 #endif
38
39 typedef struct ipx_socket_struct {
40   u_short socket;
41   int fd;
42 } ipx_socket_t;
43
44 struct ipx_recv_data {
45         /* all network order */
46         u_char src_network[4];
47         u_char src_node[6];
48         u_short src_socket;
49         u_short dst_socket;
50         int pkt_type;
51 };
52
53 struct ipx_driver {
54         int (*GetMyAddress)(void);
55         int (*OpenSocket)(ipx_socket_t *sk, int port);
56         void (*CloseSocket)(ipx_socket_t *mysock);
57         int (*SendPacket)(ipx_socket_t *mysock, IPXPacket_t *IPXHeader,
58          u_char *data, int dataLen);
59         int (*ReceivePacket)(ipx_socket_t *s, char *buffer, int bufsize, 
60          struct ipx_recv_data *rec);
61         int (*PacketReady)(ipx_socket_t *s);
62 };
63
64 int ipx_general_PacketReady(ipx_socket_t *s);
65
66 extern unsigned char ipx_MyAddress[10];
67
68 #endif /* _IPX_DRV_H */