genode/ports/src/noux/minimal/dummy_net.cc
Josef Söntgen 082d8d6623 Noux/net: refactoring of Socket_io_channel
The Socket_io_channel class now uses the Io_channel_backend to provide
the network related methods. In addition the Socket_io_channel_registry
was replaced with a simpler implementation which uses Io_receptors to
unblock I/O channels from the callback-function of lwip.
2012-11-07 11:32:06 +01:00

20 lines
443 B
C++

/*
* \brief Dummy stubs for network-related Noux functions
* \author Norman Feske
* \date 2012-05-24
*/
/*
* Copyright (C) 2011-2012 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
/* local includes */
#include <child.h>
void init_network() { }
bool Noux::Child::_syscall_net(Noux::Session::Syscall sc) { return false; }