From 94dece3176b23cd761f4c4aeb6999d570c48adc1 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Fri, 6 May 1994 13:25:54 +0000 Subject: [PATCH] Initial revision --- src/ca/addrList.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/ca/addrList.h diff --git a/src/ca/addrList.h b/src/ca/addrList.h new file mode 100644 index 000000000..682391669 --- /dev/null +++ b/src/ca/addrList.h @@ -0,0 +1,17 @@ + + + + + +union caAddr{ + struct sockaddr_in inetAddr; + struct sockaddr sockAddr; +}; + +typedef struct { + ELLNODE node; + union caAddr srcAddr; + union caAddr destAddr; +}caAddrNode; + +