#include <unistd.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <anna/config/defines.hpp>
#include <anna/core/mt/Mutex.hpp>
#include <anna/comm/INetAddress.hpp>
#include <anna/comm/AccessPoint.hpp>
Go to the source code of this file.
◆ anna_comm_socket_check
#define anna_comm_socket_check |
( |
|
a, |
|
|
|
b |
|
) |
| |
Value:if ((a) < 0) { \
std::string msg (asString ()); \
msg += " | "; \
msg += b; \
}
#define ANNA_FILE_LOCATION
Definition: defines.hpp:23
◆ anna_socket_assert
#define anna_socket_assert |
( |
|
a, |
|
|
|
b |
|
) |
| |
Value:if ((a)) { \
std::string msg (asString ()); \
msg += " | "; \
msg += b; \
throw RuntimeException (msg, __FILE__, __LINE__); \
}