/* See the DRL-LICENSE file for this file's software license. */ #ifndef _CALENDAR_H_ #define _CALENDAR_H_ #include "bsd_queue.h" #include "ratetypes.h" #define SCHEDBITS (7) #define SCHEDLEN (1 << SCHEDBITS) #define SCHEDMASK (SCHEDLEN - 1) /** Defines a struct ident_calendar whose elements are of type struct * ident_action. */ TAILQ_HEAD(ident_calendar, ident_action); #endif /* _CALENDAR_H_ */