libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
AddressInfo.cxx
1
// cosmos
2
#include <cosmos/net/AddressInfo.hxx>
3
#include <cosmos/net/AddressHints.hxx>
4
5
namespace
cosmos {
6
7
// this is only a thin C++ wrapper around struct addrinfo and needs to stay
8
// size compatible to allow casting between the two for iterating over C style
9
// lists returned from getaddrinfo().
10
static_assert
(
sizeof
(AddressInfo) ==
sizeof
(addrinfo));
11
static_assert
(
sizeof
(AddressHints) ==
sizeof
(addrinfo));
12
13
}
// end ns
src
net
AddressInfo.cxx
Generated by
1.12.0