genode/repos/os/src/server/nic_router/configuration.h

51 lines
1.1 KiB
C++

/*
* \brief Reflects the current router configuration through objects
* \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.
*/
#ifndef _CONFIGURATION_H_
#define _CONFIGURATION_H_
/* local includes */
#include <domain.h>
namespace Genode { class Allocator; }
namespace Net { class Configuration; }
class Net::Configuration
{
private:
Genode::Allocator &_alloc;
bool const _verbose;
unsigned const _rtt_sec;
Domain_tree _domains;
Genode::Xml_node const _node;
public:
Configuration(Genode::Xml_node const node, Genode::Allocator &alloc);
/***************
** Accessors **
***************/
bool verbose() const { return _verbose; }
unsigned rtt_sec() const { return _rtt_sec; }
Domain_tree &domains() { return _domains; }
Genode::Xml_node node() const { return _node; }
};
#endif /* _CONFIGURATION_H_ */