logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

xt_LED.h (470B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _XT_LED_H
  3. #define _XT_LED_H
  4. #include <linux/types.h>
  5. struct xt_led_info {
  6. char id[27]; /* Unique ID for this trigger in the LED class */
  7. __u8 always_blink; /* Blink even if the LED is already on */
  8. __u32 delay; /* Delay until LED is switched off after trigger */
  9. /* Kernel data used in the module */
  10. void *internal_data __attribute__((aligned(8)));
  11. };
  12. #endif /* _XT_LED_H */