userver: userver/clients/dns/common.hpp Source File
Loading...
Searching...
No Matches
common.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/clients/dns/common.hpp
4/// @brief Common DNS client declarations
5
6#include <boost/container/small_vector.hpp>
7
8#include <userver/engine/io/sockaddr.hpp>
9
10USERVER_NAMESPACE_BEGIN
11
12/// DNS client
13namespace clients::dns {
14
15using AddrVector = boost::container::small_vector<engine::io::Sockaddr, 4>;
16
17} // namespace clients::dns
18
19USERVER_NAMESPACE_END