AFPBridge/atipmapping.h
Stephen Heumann 3b2f1b6a25 Pass through calls we don’t handle to the original AppleTalk stack.
It is now possible to have AFP volumes mounted over both AppleTalk and TCP/IP simultaneously.
2017-04-09 20:57:09 -05:00

23 lines
420 B
C

#ifndef ATIPMAPPING_H
#define ATIPMAPPING_H
#include <types.h>
#include <appletalk.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;
LongWord DoLookupName(NBPLookupNameRec *commandRec);
#endif