Initial revision

This commit is contained in:
Jeff Hill
1994-05-06 13:25:54 +00:00
parent 96fb364371
commit 94dece3176

17
src/ca/addrList.h Normal file
View File

@@ -0,0 +1,17 @@
union caAddr{
struct sockaddr_in inetAddr;
struct sockaddr sockAddr;
};
typedef struct {
ELLNODE node;
union caAddr srcAddr;
union caAddr destAddr;
}caAddrNode;