mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
remove prints
This commit is contained in:
parent
8113bd379b
commit
d319c24878
1 changed files with 0 additions and 3 deletions
|
@ -34,14 +34,11 @@ int get_bandwidth_iwinfo(__uint8_t *client_addr, float *rx_rate, float *tx_rate)
|
||||||
int count = 0;
|
int count = 0;
|
||||||
while ((entry = readdir(dirp)) != NULL) {
|
while ((entry = readdir(dirp)) != NULL) {
|
||||||
if (entry->d_type == DT_SOCK) {
|
if (entry->d_type == DT_SOCK) {
|
||||||
printf("TRY TO GET BANDWITH: %d\n", count);
|
|
||||||
if(get_bandwith(entry->d_name, client_addr, rx_rate, tx_rate))
|
if(get_bandwith(entry->d_name, client_addr, rx_rate, tx_rate))
|
||||||
{
|
{
|
||||||
// bandwith found
|
|
||||||
sucess = 1;
|
sucess = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
count++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
closedir(dirp);
|
closedir(dirp);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue