blob: 2e27298dcde0e00eeb9ba1d21f36e64bc7eaff89 [file] [log] [blame]
#pragma once
#include <ifaddrs.h>
#include <netinet/in.h>
#include <systemd/sd-event.h>
#include <chrono>
#include <cstddef>
#include <functional>
#include <memory>
#include <sdeventplus/clock.hpp>
#include <sdeventplus/utility/timer.hpp>
#include <set>
#include <string>
#include <variant>
namespace phosphor
{
namespace network
{
using namespace std::chrono_literals;
// wait for three seconds before reloading systemd-networkd
constexpr auto reloadTimeout = 3s;
// refresh the objets after four seconds as network
// configuration takes 3-4 sec to reconfigure at most.
constexpr auto refreshTimeout = 4s;
namespace systemd
{
namespace config
{
constexpr auto networkFilePrefix = "00-bmc-";
constexpr auto networkFileSuffix = ".network";
constexpr auto deviceFileSuffix = ".netdev";
} // namespace config
} // namespace systemd
using IntfName = std::string;
using Addr_t = ifaddrs*;
struct AddrDeleter
{
void operator()(Addr_t ptr) const
{
freeifaddrs(ptr);
}
};
using AddrPtr = std::unique_ptr<ifaddrs, AddrDeleter>;
/* Need a custom deleter for freeing up sd_event */
struct EventDeleter
{
void operator()(sd_event* event) const
{
sd_event_unref(event);
}
};
using EventPtr = std::unique_ptr<sd_event, EventDeleter>;
template <typename T>
using UniquePtr = std::unique_ptr<T, std::function<void(T*)>>;
// Byte representations for common address types in network byte order
using InAddrAny = std::variant<struct in_addr, struct in6_addr>;
using InterfaceList = std::set<IntfName>;
using Timer = sdeventplus::utility::Timer<sdeventplus::ClockId::Monotonic>;
} // namespace network
} // namespace phosphor