mirror of
https://github.com/espressif/openthread.git
synced 2026-06-05 21:14:49 +00:00
[daemon] avoid using defined(__ANDROID__) macro in daemon.cpp (#10021)
This commit replaces `defined(__ANDROID__) && !OPENTHREAD_CONFIG_ANDROID_NDK_ENABLE` macro checks with `OPENTHREAD_POSIX_CONFIG_ANDROID_ENABLE`. This is to make the build options more configurable. E.g. there are cases where `__ANDROID__` is defined but the platform is not fully Android-compatible so we don't want to enable the Android platform implementation.
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
|
||||
#include "posix/platform/daemon.hpp"
|
||||
|
||||
#if defined(__ANDROID__) && !OPENTHREAD_CONFIG_ANDROID_NDK_ENABLE
|
||||
#if OPENTHREAD_POSIX_CONFIG_ANDROID_ENABLE
|
||||
#include <cutils/sockets.h>
|
||||
#endif
|
||||
#include <fcntl.h>
|
||||
@@ -174,7 +174,7 @@ exit:
|
||||
}
|
||||
}
|
||||
|
||||
#if defined(__ANDROID__) && !OPENTHREAD_CONFIG_ANDROID_NDK_ENABLE
|
||||
#if OPENTHREAD_POSIX_CONFIG_ANDROID_ENABLE
|
||||
void Daemon::createListenSocketOrDie(void)
|
||||
{
|
||||
Filename socketFile;
|
||||
@@ -268,7 +268,7 @@ void Daemon::createListenSocketOrDie(void)
|
||||
DieNowWithMessage("bind", OT_EXIT_ERROR_ERRNO);
|
||||
}
|
||||
}
|
||||
#endif // defined(__ANDROID__) && !OPENTHREAD_CONFIG_ANDROID_NDK_ENABLE
|
||||
#endif // OPENTHREAD_POSIX_CONFIG_ANDROID_ENABLE
|
||||
|
||||
void Daemon::SetUp(void)
|
||||
{
|
||||
@@ -307,7 +307,7 @@ void Daemon::TearDown(void)
|
||||
mSessionSocket = -1;
|
||||
}
|
||||
|
||||
#if !defined(__ANDROID__) || OPENTHREAD_CONFIG_ANDROID_NDK_ENABLE
|
||||
#if !OPENTHREAD_POSIX_CONFIG_ANDROID_ENABLE
|
||||
// The `mListenSocket` is managed by `init` on Android
|
||||
if (mListenSocket != -1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user