/* * netsniff-ng - the packet sniffing beast * Copyright 2014 Tobias Klauser. * Subject to the GPL, version 2. */ #include "dissector.h" #include "dissector_netlink.h" static inline void dissector_init_entry(int type) { dissector_set_print_type(dissector_get_netlink_entry_point(), type); } static inline void dissector_init_exit(int type) { dissector_set_print_type(&none_ops, type); } void dissector_init_netlink(int fnttype) { dissector_init_entry(fnttype); dissector_init_exit(fnttype); } void dissector_cleanup_netlink(void) { } >
summaryrefslogtreecommitdiff
path: root/drivers
AgeCommit message (Expand)AuthorFilesLines
2016-07-19greybus: bootrom: Use "s2l" instead of boot stage in package nameViresh Kumar1-3/+10
2016-07-19greybus: timesync: Bugfix ping should not result in -EAGAINBryan O'Donoghue1-1/+1
2016-07-18greybus: greybus_protocols.h: convert __u32 to __le32Bryan O'Donoghue1-4/+4
2016-07-18greybus: greybus_protocols.h/es2: Ensure __le32 is used not u32Bryan O'Donoghue2-4/+8
2016-07-17greybus: camera: Update CSI config parametersJacopo Mondi