summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorYavor Georgiev <fealebenpae@gmail.com>2024-03-05 19:10:03 +0100
committerTomas Mraz <tomas@openssl.org>2024-03-22 17:00:01 +0100
commitf2de18a30d25bf19236963ff72c02833ae41be40 (patch)
tree8d19511ad7bcceac3787ff328ddb77774d8b5713 /crypto
parent178ab8d9da0942ba50016f319f991060ce95861c (diff)
Don’t use the recvmmsg dgram method on Android <5
recvmmsg and sendmmsg were only added to Android’s C library in version 5, starting with API Level 21. Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23754) (cherry picked from commit 24109dca5a793d58c68a346db5b21746079ec317)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bio/bss_dgram.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/bio/bss_dgram.c b/crypto/bio/bss_dgram.c
index c22860b1a4..7dbdfe181a 100644
--- a/crypto/bio/bss_dgram.c
+++ b/crypto/bio/bss_dgram.c
@@ -66,6 +66,10 @@
#undef NO_RECVMSG
#define NO_RECVMSG
# endif
+# if defined(__ANDROID_API__) && __ANDROID_API__ < 21
+# undef NO_RECVMMSG
+# define NO_RECVMMSG
+# endif
# if !defined(M_METHOD)
# if defined(OPENSSL_SYS_WINDOWS) && defined(BIO_HAVE_WSAMSG) && !defined(NO_WSARECVMSG)
# define M_METHOD M_METHOD_WSARECVMSG