diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2017-09-13 12:18:21 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2017-09-13 12:18:21 +0200 |
commit | b4b0db043bc7e03982b24c9e330bf1bc2c727fc0 (patch) | |
tree | 9c46585911a622d80c54840be91157247f4a43b8 /dev.h | |
parent | 439af62bca4794d78d53fb4634f560d6a75f0adb (diff) |
dev: only calculate wireless bitrate if necessary
Only call wireless_bitrate (and thus the underlying ioctl) if strictly
necessary, i.e. ethtool_bitrate returned 0.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'dev.h')
-rw-r--r-- | dev.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ extern int device_type(const char *ifname); extern short device_get_flags(const char *ifname); extern void device_set_flags(const char *ifname, const short flags); extern int device_up_and_running(const char *ifname); -extern u32 device_bitrate(const char *ifname); +extern uint32_t device_bitrate(const char *ifname); extern short device_enter_promiscuous_mode(const char *ifname); extern void device_leave_promiscuous_mode(const char *ifname, short oldflags); extern const char *device_type2str(uint16_t type); |