libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SocketAddress.cxx
1// cosmos
2#include <cosmos/error/RuntimeError.hxx>
3#include <cosmos/net/SocketAddress.hxx>
4#include <cosmos/utils.hxx>
5
6namespace cosmos {
7
8void SocketAddress::update(size_t new_length) {
9 if (new_length != this->size()) {
10 cosmos_throw(RuntimeError("inconsistent socket address size on return"));
11 }
12}
13
15 auto addr = basePtr();
16 std::memset(addr, 0, maxSize());
17 addr->sa_family = to_integral(family());
18}
19
20}; // end ns
Exception type for generic runtime errors.
void clear()
Clears the complete address structure.
virtual void update(size_t new_length)
Update the address structure after it has been filled in by the kernel.
virtual size_t maxSize() const
Returns the maximum number of bytes the socket address can hold.
virtual SocketFamily family() const =0
Returns the concrete SocketFamily for the implementation address type.
virtual size_t size() const =0
Returns the size of the socket address in bytes found at basePtr().
virtual sockaddr * basePtr()=0
Returns a mutable pointer to the sockaddr* base structure.