xref: /freebsd/contrib/ntp/include/ntp_keyacc.h (revision 4f0a4502a1f33fef287ac558c98e5ef99a32216f)
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