E-MailRelay
|
A derivation of GNet::Socket for a datagram socket. More...
#include <gsocket.h>
Classes | |
struct | Config |
A configuration structure for GNet::DatagramSocket. More... | |
Public Member Functions | |
DatagramSocket (Address::Family, int protocol, const Config &config) | |
Constructor. More... | |
ssize_type | read (char *buffer, size_type len) override |
Override from ReadWrite::read(). More... | |
ssize_type | write (const char *buffer, size_type len) override |
Override from Socket::write(). More... | |
ssize_type | readfrom (char *buffer, size_type len, Address &src) |
Reads a datagram and returns the sender's address by reference. More... | |
ssize_type | writeto (const char *buffer, size_type len, const Address &dst) |
Sends a datagram to the given address. More... | |
ssize_type | writeto (const std::vector< std::string_view > &, const Address &dst) |
Sends a datagram to the given address, overloaded for scatter-gather data chunks. More... | |
void | disconnect () |
Releases the association between two datagram endpoints reversing the effect of the previous Socket::connect(). More... | |
std::size_t | limit (std::size_t default_=1024U) const |
Returns the systems's maximum datagram size if the value is known and greater than the given default value. More... | |
DatagramSocket (const DatagramSocket &)=delete | |
DatagramSocket (DatagramSocket &&)=delete | |
DatagramSocket & | operator= (const DatagramSocket &)=delete |
DatagramSocket & | operator= (DatagramSocket &&)=delete |
![]() | |
Address | getLocalAddress () const |
Retrieves the local address of the socket. More... | |
std::pair< bool, Address > | getPeerAddress () const |
Retrieves address of socket's peer. More... | |
void | bind (const Address &) |
Binds the socket with the given address. More... | |
bool | bind (const Address &, std::nothrow_t) |
No-throw overload. Returns false on error. More... | |
unsigned long | getBoundScopeId () const |
Returns the scope-id of the address last successfully bind()ed. More... | |
bool | connect (const Address &addr, bool *done=nullptr) |
Initiates a connection to (or association with) the given address. More... | |
void | listen () |
Starts the socket listening on the bound address for incoming connections or incoming datagrams. More... | |
void | shutdown (int how=1) |
Modifies the local socket state so that new sends (1 or 2) and/or receives (0 or 2) will fail. More... | |
Socket (const Socket &)=delete | |
Socket (Socket &&)=delete | |
Socket & | operator= (const Socket &)=delete |
Socket & | operator= (Socket &&)=delete |
![]() | |
~SocketBase () override | |
Destructor. More... | |
SOCKET | fd () const noexcept override |
Returns the socket file descriptor. More... | |
Descriptor | fdd () const noexcept |
Returns the socket descriptor. More... | |
bool | eWouldBlock () const override |
Returns true if the previous socket operation failed because the socket would have blocked. More... | |
bool | eInProgress () const |
Returns true if the previous socket operation failed with the EINPROGRESS error status. More... | |
bool | eInUse () const |
Returns true if the previous socket bind operation failed because the socket was already in use. More... | |
bool | eMsgSize () const |
Returns true if the previous socket operation failed with the EMSGSIZE error status. More... | |
bool | eTooMany () const |
Returns true if the previous socket operation failed with the EMFILE error status, or similar. More... | |
bool | eNotConn () const |
Returns true if the previous socket operation failed with the ENOTCONN error status, or similar. More... | |
void | addReadHandler (EventHandler &, EventState) |
Adds this socket to the event source list so that the given handler receives read events. More... | |
void | dropReadHandler () noexcept |
Reverses addReadHandler(). More... | |
void | addWriteHandler (EventHandler &, EventState) |
Adds this socket to the event source list so that the given handler receives write events when flow control is released. More... | |
void | dropWriteHandler () noexcept |
Reverses addWriteHandler(). More... | |
void | addOtherHandler (EventHandler &, EventState) |
Adds this socket to the event source list so that the given handler receives exception events. More... | |
void | dropOtherHandler () noexcept |
Reverses addOtherHandler(). More... | |
std::string | asString () const |
Returns the socket handle as a string. More... | |
std::string | reason () const |
Returns the reason for the previous error. More... | |
SocketBase (const SocketBase &)=delete | |
SocketBase (SocketBase &&)=delete | |
SocketBase & | operator= (const SocketBase &)=delete |
SocketBase & | operator= (SocketBase &&)=delete |
![]() | |
virtual ssize_type | read (char *buffer, size_type buffer_length)=0 |
Reads data. More... | |
virtual ssize_type | write (const char *buf, size_type len)=0 |
Sends data. More... | |
virtual bool | eWouldBlock () const =0 |
See read() and write(). More... | |
virtual SOCKET | fd () const noexcept=0 |
Returns the file descriptor. More... | |
virtual | ~ReadWrite ()=default |
Destructor. | |
Additional Inherited Members | |
![]() | |
using | size_type = G::ReadWrite::size_type |
using | ssize_type = G::ReadWrite::ssize_type |
![]() | |
using | size_type = std::size_t |
using | ssize_type = ssize_t |
![]() | |
static std::string | canBindHint (const Address &address, bool stream_socket, const Config &) |
Returns the empty string if a socket could probably be bound with the given address or a failure reason. More... | |
![]() | |
static bool | supports (Address::Family, int type, int protocol) |
Returns true if sockets can be created with the given parameters. More... | |
![]() | |
Socket (Address::Family, int type, int protocol, const Config &) | |
Socket (Address::Family, Descriptor s, const Accepted &, const Config &) | |
Socket (Address::Family, Descriptor s, const Adopted &, const Config &) | |
void | setOptionLinger (int onoff, int time) |
void | setOptionKeepAlive () |
void | setOptionFreeBind () |
![]() | |
SocketBase (Address::Family, int type, int protocol) | |
Constructor used by derived classes. More... | |
SocketBase (Address::Family, Descriptor s) | |
Constructor used by derived classes. More... | |
SocketBase (Address::Family, Descriptor s, const Accepted &) | |
Constructor used by StreamSocket::accept() to create a socket object from a newly accept()ed socket handle. More... | |
SocketBase (const Raw &, int domain, int type, int protocol) | |
Constructor for a raw socket. More... | |
void | clearReason () |
Clears the saved errno. More... | |
void | saveReason () |
Saves the current errno following error()/sizeError(). More... | |
void | saveReason () const |
Saves the current errno following error()/sizeError(). More... | |
bool | isFamily (Address::Family) const |
Returns true if the socket family is as given. More... | |
![]() | |
static Address | getLocalAddress (Descriptor) |
![]() | |
static bool | error (int rc) |
Returns true if the given return code indicates an error. More... | |
static bool | sizeError (ssize_type size) |
Returns true if the given write() return value indicates an error. More... | |
A derivation of GNet::Socket for a datagram socket.
|
explicit |
Constructor.
Definition at line 589 of file gsocket.cpp.
void GNet::DatagramSocket::disconnect | ( | ) |
Releases the association between two datagram endpoints reversing the effect of the previous Socket::connect().
Definition at line 595 of file gsocket.cpp.
std::size_t GNet::DatagramSocket::limit | ( | std::size_t | default_ = 1024U | ) | const |
Returns the systems's maximum datagram size if the value is known and greater than the given default value.
Returns the given default value if the system limit is not known.
Definition at line 245 of file gsocket_unix.cpp.
|
overridevirtual |
Override from ReadWrite::read().
Implements G::ReadWrite.
Definition at line 603 of file gsocket.cpp.
GNet::Socket::ssize_type GNet::DatagramSocket::readfrom | ( | char * | buffer, |
size_type | len, | ||
Address & | src | ||
) |
Reads a datagram and returns the sender's address by reference.
If connect() has been used then only datagrams from the address specified in the connect() call will be received.
Definition at line 617 of file gsocket.cpp.
|
overridevirtual |
GNet::Socket::ssize_type GNet::DatagramSocket::writeto | ( | const char * | buffer, |
size_type | len, | ||
const Address & | dst | ||
) |
Sends a datagram to the given address.
This should be used if there is no connect() assocation in effect.
Definition at line 632 of file gsocket.cpp.
GNet::Socket::ssize_type GNet::DatagramSocket::writeto | ( | const std::vector< std::string_view > & | data, |
const Address & | dst | ||
) |
Sends a datagram to the given address, overloaded for scatter-gather data chunks.
Definition at line 258 of file gsocket_unix.cpp.