]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/uapi/linux/netfilter/xt_LED.h
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-bionic-kernel.git] / include / uapi / linux / netfilter / xt_LED.h
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef _XT_LED_H
3 #define _XT_LED_H
4
5 #include <linux/types.h>
6
7 struct xt_led_info {
8 char id[27]; /* Unique ID for this trigger in the LED class */
9 __u8 always_blink; /* Blink even if the LED is already on */
10 __u32 delay; /* Delay until LED is switched off after trigger */
11
12 /* Kernel data used in the module */
13 void *internal_data __attribute__((aligned(8)));
14 };
15
16 #endif /* _XT_LED_H */