mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.crand: Only include getrandom shiv with glibc older than 2.25
This commit is contained in:
parent
7dba99875f
commit
956c50882b
1 changed files with 6 additions and 1 deletions
|
@ -28,17 +28,22 @@
|
|||
#include <errno.h>
|
||||
|
||||
#if defined(WITH_GETRANDOM)
|
||||
|
||||
#if ! __GLIBC_PREREQ(2,25)
|
||||
#include <unistd.h>
|
||||
#include <sys/syscall.h>
|
||||
#include <linux/random.h>
|
||||
|
||||
#ifndef SYS_getrandom
|
||||
#error getrandom() requires Linux 3.17 or later
|
||||
#endif
|
||||
|
||||
/* This wasn't present before glibc 2.25 */
|
||||
int getrandom(void *buf, size_t buflen, unsigned int flags) {
|
||||
return syscall(SYS_getrandom, buf, buflen, flags);
|
||||
}
|
||||
#else
|
||||
#include <sys/random.h>
|
||||
#endif
|
||||
|
||||
#elif defined(WITH_ARC4RANDOM)
|
||||
#include <stdlib.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue