genode/repos/os/src/server/nic_router/ip_rule.cc
2017-02-28 12:59:29 +01:00

26 lines
480 B
C++

/*
* \brief IP routing entry
* \author Martin Stein
* \date 2016-08-19
*/
/*
* Copyright (C) 2016-2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
/* 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)
{ }