genode/repos/os/src/server/nic_router/ip_rule.cc

26 lines
469 B
C++

/*
* \brief IP routing entry
* \author Martin Stein
* \date 2016-08-19
*/
/*
* Copyright (C) 2016 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 <ip_rule.h>
using namespace Net;
using namespace Genode;
Ip_rule::Ip_rule(Domain_tree &domains, Xml_node const &node)
:
Leaf_rule(domains, node),
Direct_rule(node)
{ }