mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
dawn: change __unit8_t to uint8_t
Fixed #11689. Signed-off-by: Nick Hainke <vincent@systemli.org>
This commit is contained in:
parent
b967c1e0b6
commit
a25bb91f37
2 changed files with 7 additions and 7 deletions
|
|
@ -21,7 +21,7 @@ int get_bandwidth(const char *ifname, uint8_t *client_addr, float *rx_rate, floa
|
|||
|
||||
#define IWINFO_ESSID_MAX_SIZE 32
|
||||
|
||||
int compare_essid_iwinfo(__uint8_t *bssid_addr, __uint8_t *bssid_addr_to_compare) {
|
||||
int compare_essid_iwinfo(uint8_t *bssid_addr, uint8_t *bssid_addr_to_compare) {
|
||||
const struct iwinfo_ops *iw;
|
||||
|
||||
char mac_buf[20];
|
||||
|
|
@ -81,7 +81,7 @@ int compare_essid_iwinfo(__uint8_t *bssid_addr, __uint8_t *bssid_addr_to_compare
|
|||
return -1;
|
||||
}
|
||||
|
||||
int get_bandwidth_iwinfo(__uint8_t *client_addr, float *rx_rate, float *tx_rate) {
|
||||
int get_bandwidth_iwinfo(uint8_t *client_addr, float *rx_rate, float *tx_rate) {
|
||||
|
||||
DIR *dirp;
|
||||
struct dirent *entry;
|
||||
|
|
@ -137,7 +137,7 @@ int get_bandwidth(const char *ifname, uint8_t *client_addr, float *rx_rate, floa
|
|||
return 0;
|
||||
}
|
||||
|
||||
int get_rssi_iwinfo(__uint8_t *client_addr) {
|
||||
int get_rssi_iwinfo(uint8_t *client_addr) {
|
||||
|
||||
DIR *dirp;
|
||||
struct dirent *entry;
|
||||
|
|
@ -190,7 +190,7 @@ int get_rssi(const char *ifname, uint8_t *client_addr) {
|
|||
return INT_MIN;
|
||||
}
|
||||
|
||||
int get_expected_throughput_iwinfo(__uint8_t *client_addr) {
|
||||
int get_expected_throughput_iwinfo(uint8_t *client_addr) {
|
||||
|
||||
DIR *dirp;
|
||||
struct dirent *entry;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue