byedpi/error.h

65 lines
1.4 KiB
C
Raw Normal View History

2024-02-19 12:51:34 +03:00
#include <stdio.h>
#include <errno.h>
#ifdef _WIN32
2024-02-24 20:44:54 +03:00
#include <winsock2.h>
#endif
#ifdef ANDROID_APP
#include <android/log.h>
2024-02-19 12:51:34 +03:00
#endif
#ifdef _WIN32
#define get_e() \
unie(WSAGetLastError())
#else
#define get_e() \
errno
#endif
#ifdef _WIN32
2024-02-24 20:44:54 +03:00
#define uniperror(str) \
fprintf(stderr, "%s: %d\n", str, WSAGetLastError())
2024-02-19 12:51:34 +03:00
#else
2024-02-24 20:44:54 +03:00
#ifdef ANDROID_APP
#define uniperror(str) \
__android_log_print(ANDROID_LOG_ERROR, "proxy",
"%s: %s\n", str, strerror(errno))
#else
#define uniperror(str) \
perror(str)
#endif
2024-02-19 12:51:34 +03:00
#endif
inline const int unie(int e)
{
#ifdef _WIN32
switch (e) {
case WSAEWOULDBLOCK:
return EAGAIN;
case WSAETIMEDOUT:
return ETIMEDOUT;
case WSAENETUNREACH:
return ENETUNREACH;
case WSAEHOSTUNREACH:
return EHOSTUNREACH;
case WSAECONNREFUSED:
return ECONNREFUSED;
}
#endif
return e;
}
2024-02-24 20:44:54 +03:00
#ifdef ANDROID_APP
#define LOG_E ANDROID_LOG_ERROR
#define LOG_S ANDROID_LOG_DEBUG
#define LOG_L ANDROID_LOG_VERBOSE
#define LOG(s, str, ...) \
__android_log_print(s, "proxy", str, ##__VA_ARGS__)
#else
#define LOG_E -1
#define LOG_S 1
#define LOG_L 2
#define LOG(s, str, ...) \
if (params.debug >= s) \
fprintf(stderr, str, ##__VA_ARGS__)
#endif