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