libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SocketAddress.hxx
1#pragma once
2
3// C++
4#include <cstring>
5
6// cosmos
7#include <cosmos/dso_export.h>
8#include <cosmos/net/types.hxx>
9
10namespace cosmos {
11
13
32class COSMOS_API SocketAddress {
33 friend class Socket;
34 friend class SendMessageHeader;
35 friend class ReceiveMessageHeader;
36public: // functions
37
38 virtual ~SocketAddress() {}
39
41 virtual SocketFamily family() const = 0;
42
44
49 virtual size_t size() const = 0;
50
52
57 virtual size_t maxSize() const {
58 return size();
59 }
60
61protected: // functions
62
64 virtual sockaddr* basePtr() = 0;
66 virtual const sockaddr* basePtr() const = 0;
67
69
77 void clear();
78
80
90 virtual void update(size_t new_length);
91};
92
93}; // end ns
Wrapper for struct msghdr for receiving message via Socket::receiveMessage().
Wrapper for struct msghdr for sending messages via Socket::sendMessage().
Base class for all types of socket addresses.
virtual size_t maxSize() const
Returns the maximum number of bytes the socket address can hold.
virtual const sockaddr * basePtr() const =0
Returns a const pointer to the sockaddr* base structure.
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.
Base class for Socket types with ownership of a FileDescriptor.
Definition Socket.hxx:38
SocketFamily
A socket's family setting.
Definition types.hxx:37