git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1637
270642c3-0616-0410-b53a-bc976706d245
case EINTR:
break;
case EAGAIN:
+ case ENOBUFS:
+ // According to the man page this should not happen, since packets are just silently being dropped.
+ // It does happen in NetEmu using small TxQueues on WLAN interfaces
case ECONNREFUSED:
// Writing to a UDP socket seems return this error code if a corresponding ICMP
// error code has been received before (at least on linux). This is inconsistent
case EINTR:
break;
case EAGAIN:
+ case ENOBUFS:
+ // According to the man page this should not happen, since packets are just silently being dropped.
+ // It does happen in NetEmu using small TxQueues on WLAN interfaces
rv = 0;
break;
default: