AFPBridge/atipmapping.h

20 lines
343 B
C
Raw Normal View History

#ifndef ATIPMAPPING_H
#define ATIPMAPPING_H
#include <types.h>
typedef struct ATIPMapping {
/* AppleTalk address/socket */
Word networkNumber; /* in network byte order */
Byte node;
Byte socket;
/* IP address/port */
LongWord ipAddr;
Word port;
} ATIPMapping;
extern struct ATIPMapping atipMapping;
#endif