July 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 | 31 | 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 |
01: #ifndef _XT_LED_H 02: #define _XT_LED_H 03: 04: #include <linux/types.h> 05: 06: struct xt_led_info { 07: char id[27]; /* Unique ID for this trigger in the LED class */ 08: __u8 always_blink; /* Blink even if the LED is already on */ 09: __u32 delay; /* Delay until LED is switched off after trigger */ 10: 11: /* Kernel data used in the module */ 12: void *internal_data __attribute__((aligned(8))); 13: }; 14: 15: #endif /* _XT_LED_H */ 16: