1 /* 2 * ntp_keyacc.h - key access stuff 3 */ 4 #ifndef NTP_KEYACC_H 5 #define NTP_KEYACC_H 6 7 typedef struct keyaccess KeyAccT; 8 struct keyaccess { 9 KeyAccT * next; 10 sockaddr_u addr; 11 }; 12 13 #endif /* NTP_KEYACC_H */ 14