genode/ports/src/noux/net
Josef Söntgen 6d8a7c0cc4 Initial version of networking support for Noux
Noux/net adds network functionality to noux. Currently most basic
network related system calls including 'accept', 'bind', 'connect',
'listen', 'recv', 'send', 'shutdown', and 'socket' are implemented by
wrapping lwip's network functions.

At the moment noux/net is rarely usable, though it is possible to
use netcat to send a message to a netcat server which listen on a
given port in noux/net.
2012-05-29 13:54:59 +02:00
..
net.cc Initial version of networking support for Noux 2012-05-29 13:54:59 +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 Initial version of networking support for Noux 2012-05-29 13:54:59 +02:00
target.mk Initial version of networking support for Noux 2012-05-29 13:54:59 +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).