mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-24 00:34:44 +01:00
adjustments
This commit is contained in:
parent
314b8bf72d
commit
37920b6476
@ -13,6 +13,7 @@ endif (USE_BUNDLE_DEFAULTS)
|
|||||||
file(GLOB_RECURSE SRC "src/*.cpp" "src/*.c")
|
file(GLOB_RECURSE SRC "src/*.cpp" "src/*.c")
|
||||||
|
|
||||||
add_definitions(-DSDRPP_IS_CORE)
|
add_definitions(-DSDRPP_IS_CORE)
|
||||||
|
add_definitions(-DFLOG_ANDROID_TAG="SDR++")
|
||||||
if (MSVC)
|
if (MSVC)
|
||||||
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
||||||
endif ()
|
endif ()
|
||||||
|
@ -169,7 +169,7 @@ namespace flog {
|
|||||||
fprintf(outStream, "] %s\n", out.c_str());
|
fprintf(outStream, "] %s\n", out.c_str());
|
||||||
#elif defined(__ANDROID__)
|
#elif defined(__ANDROID__)
|
||||||
// Print format string
|
// Print format string
|
||||||
__android_log_buf_print(LOG_ID_DEFAULT, TYPE_PRIORITIES[type], FLOG_ANDROID_TAG, COLOR_WHITE "[%02d/%02d/%02d %02d:%02d:%02d.%03d] [%s%s" COLOR_WHITE "] %s\n",
|
__android_log_print(TYPE_PRIORITIES[type], FLOG_ANDROID_TAG, COLOR_WHITE "[%02d/%02d/%02d %02d:%02d:%02d.%03d] [%s%s" COLOR_WHITE "] %s\n",
|
||||||
nowc->tm_mday, nowc->tm_mon + 1, nowc->tm_year + 1900, nowc->tm_hour, nowc->tm_min, nowc->tm_sec, 0, TYPE_COLORS[type], TYPE_STR[type], out.c_str());
|
nowc->tm_mday, nowc->tm_mon + 1, nowc->tm_year + 1900, nowc->tm_hour, nowc->tm_min, nowc->tm_sec, 0, TYPE_COLORS[type], TYPE_STR[type], out.c_str());
|
||||||
#else
|
#else
|
||||||
// Print format string
|
// Print format string
|
||||||
|
@ -288,8 +288,8 @@ namespace net {
|
|||||||
|
|
||||||
// Save data
|
// Save data
|
||||||
for (auto iface = addresses; iface; iface = iface->ifa_next) {
|
for (auto iface = addresses; iface; iface = iface->ifa_next) {
|
||||||
if (iface->ifa_addr->sa_family != AF_INET) { continue; }
|
|
||||||
if (!iface->ifa_addr || !iface->ifa_netmask) { continue; }
|
if (!iface->ifa_addr || !iface->ifa_netmask) { continue; }
|
||||||
|
if (iface->ifa_addr->sa_family != AF_INET) { continue; }
|
||||||
InterfaceInfo info;
|
InterfaceInfo info;
|
||||||
info.address = ntohl(*(uint32_t*)&iface->ifa_addr->sa_data[2]);
|
info.address = ntohl(*(uint32_t*)&iface->ifa_addr->sa_data[2]);
|
||||||
info.netmask = ntohl(*(uint32_t*)&iface->ifa_netmask->sa_data[2]);
|
info.netmask = ntohl(*(uint32_t*)&iface->ifa_netmask->sa_data[2]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user