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
5namespace 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().
10static_assert(sizeof(AddressInfo) == sizeof(addrinfo));
11static_assert(sizeof(AddressHints) == sizeof(addrinfo));
12
13} // end ns