Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
xt_time.h
Go to the documentation of this file.
1 #ifndef _XT_TIME_H
2 #define _XT_TIME_H 1
3 
4 #include <linux/types.h>
5 
6 struct xt_time_info {
14 };
15 
16 enum {
17  /* Match against local time (instead of UTC) */
18  XT_TIME_LOCAL_TZ = 1 << 0,
19 
20  /* treat timestart > timestop (e.g. 23:00-01:00) as single period */
22 
23  /* Shortcuts */
24  XT_TIME_ALL_MONTHDAYS = 0xFFFFFFFE,
27  XT_TIME_MAX_DAYTIME = 24 * 60 * 60 - 1,
28 };
29 
30 #define XT_TIME_ALL_FLAGS (XT_TIME_LOCAL_TZ|XT_TIME_CONTIGUOUS)
31 
32 #endif /* _XT_TIME_H */