mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-02-01 18:33:12 +00:00
Correcting wait behavior for wpcapslip tool
-Added a check for EAGAIN to errno (this is need to handle temporary timeouts) -Recompiled wpcapslip6.exe
This commit is contained in:
parent
5762179159
commit
844c550ff5
@ -1321,7 +1321,7 @@ main(int argc, char **argv)
|
|||||||
tv.tv_usec = 10;
|
tv.tv_usec = 10;
|
||||||
ret = select(maxfd + 1, &rset, &wset, NULL, &tv);
|
ret = select(maxfd + 1, &rset, &wset, NULL, &tv);
|
||||||
}
|
}
|
||||||
if(ret == -1 && errno != EINTR) {
|
if(ret == -1 && errno != EINTR && errno != EAGAIN) {
|
||||||
err(1, "select");
|
err(1, "select");
|
||||||
}
|
}
|
||||||
else if(ret > 0) {
|
else if(ret > 0) {
|
||||||
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user