genode/ports/src/noux/net
Josef Söntgen 9cff243f42 Noux: add proper errno handling to network funcs
Programs use the errno value to check which error exactly occured.
It is mandatory for non-blocking I/O, e.g. connect() gets the current
state of the connection by looking at the returned errno values.

Fixes #337.
2012-08-30 10:44:06 +02:00
..
net.cc Noux: add cleanup_socket_descriptors() function 2012-08-22 09:51:30 +02:00
README Initial version of networking support for Noux 2012-05-29 13:54:59 +02:00
socket_descriptor_registry.h Noux/net: add reset_all() method to sd registry 2012-08-22 09:51:30 +02:00
socket_io_channel.h Noux: add proper errno handling to network funcs 2012-08-30 10:44:06 +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).