dissector: icmpv6: Fix compiler warnings
[netsniff-ng.git] / link.h
blob67ec43351d35f033d08047f4e2b58d9ded90a977
1 #ifndef LINK_H
2 #define LINK_H
4 #include <stdint.h>
5 #include <sys/socket.h>
6 #include <linux/ethtool.h>
7 #include <linux/wireless.h>
9 #include "built_in.h"
11 extern int wireless_sigqual(const char *ifname, struct iw_statistics *stats);
12 extern int wireless_rangemax_sigqual(const char *ifname);
13 extern u32 wireless_bitrate(const char *ifname);
14 extern u32 ethtool_bitrate(const char *ifname);
15 extern int ethtool_drvinf(const char *ifname, struct ethtool_drvinfo *drvinf);
16 extern int ethtool_link(const char *ifname);
18 #endif /* LINK_H */