/* * \brief IPv4 peer configuration * \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. */ /* Genode includes */ #include /* local includes */ #include using namespace Genode; using namespace Net; Ipv4_config::Ipv4_config(Ipv4_address_prefix interface, Ipv4_address gateway, Ipv4_address dns_server) : interface(interface), gateway(gateway), dns_server(dns_server) { if (!valid && (interface_valid || gateway_valid)) { error("Bad IP configuration"); } } void Ipv4_config::print(Genode::Output &output) const { Genode::print(output, "interface ", interface); if (gateway.valid()) { Genode::print(output, ", gateway ", gateway); } if (dns_server.valid()) { Genode::print(output, ", DNS server ", dns_server); } }