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