mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.crand: Use a small buffer on the stack for small pieces of random, should be faster
This commit is contained in:
parent
af554a9feb
commit
da570eb0a4
1 changed files with 11 additions and 1 deletions
|
@ -58,9 +58,19 @@ int getrandom(void *buf, size_t buflen, unsigned int flags) {
|
|||
#error util.crand compiled without a random source
|
||||
#endif
|
||||
|
||||
#ifndef SMALLBUFSIZ
|
||||
#define SMALLBUFSIZ 32
|
||||
#endif
|
||||
|
||||
int Lrandom(lua_State *L) {
|
||||
char smallbuf[SMALLBUFSIZ];
|
||||
char *buf = &smallbuf[0];
|
||||
const size_t len = luaL_checkinteger(L, 1);
|
||||
void *buf = lua_newuserdata(L, len);
|
||||
|
||||
if(len > SMALLBUFSIZ) {
|
||||
buf = lua_newuserdata(L, len);
|
||||
}
|
||||
|
||||
|
||||
#if defined(WITH_GETRANDOM)
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue