You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
502 B
17 lines
502 B
#ifndef STRACE_NETLINK_KOBJECT_UEVENT_H |
|
#define STRACE_NETLINK_KOBJECT_UEVENT_H |
|
|
|
struct udev_monitor_netlink_header { |
|
/* "libudev" prefix to distinguish libudev and kernel messages */ |
|
char prefix[8]; |
|
unsigned int magic; |
|
unsigned int header_size; |
|
unsigned int properties_off; |
|
unsigned int properties_len; |
|
unsigned int filter_subsystem_hash; |
|
unsigned int filter_devtype_hash; |
|
unsigned int filter_tag_bloom_hi; |
|
unsigned int filter_tag_bloom_lo; |
|
}; |
|
|
|
#endif /* !STRACE_NETLINK_KOBJECT_UEVENT_H */
|
|
|