genode/ports/src/noux/net
Josef Söntgen ae524e4beb Noux: add timeout handling to select()
Previously there was not actual timeout handling. If a select() call
set an timeout it would be set to zero instead and was always handled
as blocking i/o. While this works fine for file descriptors which
will be triggerd externally (for example vim through terminal i/o) it
does not work at all for socket descriptors and network operations in
general.

So this commit introduces proper timeout handling and changes the
behaviour of SYSCALL_SELECT so that it now returns more than just
one descriptor at a time.

noux/minimal and noux/net now depend on thread and alarm libraries.
2012-08-22 09:51:27 +02:00
..
net.cc Noux/net: adjust noux/net to lwip-1.4.1-rc1 2012-08-16 10:03:01 +02:00
README Initial version of networking support for Noux 2012-05-29 13:54:59 +02:00
socket_descriptor_registry.h Initial version of networking support for Noux 2012-05-29 13:54:59 +02:00
socket_io_channel.h Noux: add recvfrom() 2012-07-19 21:05:52 +02:00
target.mk Noux: add timeout handling to select() 2012-08-22 09:51:27 +02:00

This directory contains the implementation of network related stuff for noux.

Currently network support is provided by using the libc and lwip directly
(only for initialization of the actual network subsystem).