AFPBridge/atipmapping.h

18 lines
323 B
C

#ifndef ATIPMAPPING_H
#define ATIPMAPPING_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