genode/ports/src/noux/net
Norman Feske c3c6a82d13 Move VFS from noux to 'os/include/vfs'
By separating the VFS from Noux, we become able to reuse the
VFS for libc-using programs. The most substantial change is the
removal of Noux::Sysio data structures from the VFS. Instead, the
Noux::Sysio refers to the VFS types now.

The new VFS library is located at 'os/include/vfs/'.

Furthermore, the patch removes various code duplications related
to pseudo file systems that provide a single file (block, zero,
random, terminal, null). The new 'Single_file_system' holds the
common boilerplate code for those.

Issue #999
2014-04-29 15:19:27 +02:00
..
README Initial version of networking support for Noux 2012-05-29 13:54:59 +02:00
net.cc noux: Handle SYSCALL_KILL in switch (fix warning) 2014-04-24 14:56:36 +02:00
socket_io_channel.h Move VFS from noux to 'os/include/vfs' 2014-04-29 15:19:27 +02:00
target.mk noux: use lwip dhcp plugin, avoid code duplication 2013-10-22 08:00:14 +02:00

README

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).