| Commit message (Expand) | Author | Age | Files | Lines |
* | util.pposix: Expose ENOENT constant (usually 2, but you never know) | Kim Alvefur | 2017-03-01 | 1 | -0/+5 |
* | util.pposix: Fix typo in comment | Kim Alvefur | 2017-02-26 | 1 | -1/+1 |
* | util.crand: Clarify that lua_error does not return | Kim Alvefur | 2017-02-25 | 1 | -1/+1 |
* | util.crand: Throw error if OpenSSLs RNG is not seeded | Kim Alvefur | 2017-02-25 | 1 | -4/+6 |
* | util-src/*.c: Attach pointer * to name instead of type | Kim Alvefur | 2017-02-12 | 8 | -138/+162 |
* | util.ringbuffer: Remove address of buffer itself from __tostring since is now... | Kim Alvefur | 2017-02-12 | 1 | -1/+1 |
* | util-src/*.c: Squeeze repeated blank lines | Kim Alvefur | 2017-01-23 | 5 | -8/+0 |
* | util.crand: TODOs | Kim Alvefur | 2017-01-22 | 1 | -1/+2 |
* | util.crand: Comment about getrandom | Kim Alvefur | 2017-01-22 | 1 | -1/+4 |
* | util.crand: Add comment describing purpose of module | Kim Alvefur | 2017-01-22 | 1 | -0/+6 |
* | util.crand: Update copyright header | Kim Alvefur | 2017-01-22 | 1 | -3/+3 |
* | util.ringbuffer: Allocate buffer itself as part of userdata (simpler, single ... | Kim Alvefur | 2017-01-22 | 1 | -19/+3 |
* | util.ringbuffer: Remove unused macros | Kim Alvefur | 2017-01-22 | 1 | -3/+0 |
* | util.crand: Raise hard errors | Kim Alvefur | 2017-01-20 | 1 | -7/+3 |
* | util.crand: Remove seeding | Kim Alvefur | 2017-01-20 | 1 | -20/+0 |
* | util.crand: Let Lua handle allocation, freeing and error handling for buffer | Kim Alvefur | 2017-01-20 | 1 | -40/+3 |
* | util.crand: Switch to luaL_checkinteger since checkint is deprecated in Lua 5.3 | Kim Alvefur | 2017-01-20 | 1 | -1/+2 |
* | util-src: Make C modules assert that the Lua runtime matches what it was comp... | Kim Alvefur | 2017-01-08 | 9 | -0/+27 |
* | util.pposix: rfork() seems to be FreeBSD only (fixes #412) | Kim Alvefur | 2016-12-19 | 1 | -2/+2 |
* | configure: Move -ggdb flag here from util-src/Make | Kim Alvefur | 2016-08-19 | 1 | -1/+1 |
* | Move C compiler flag -pedantic from Makefile to configure | Kim Alvefur | 2016-08-19 | 1 | -1/+1 |
* | util-src/Makefile: Remove redundant -Wall (already set by configure) | Kim Alvefur | 2016-08-19 | 1 | -1/+1 |
* | util.table: Move loop variable to top of function for C89 compatibility | Kim Alvefur | 2016-08-07 | 1 | -1/+2 |
* | util.table: Add pack() function (this is already available in Lua 5.2+) | Matthew Wild | 2016-07-27 | 1 | -0/+15 |
* | util.pposix: Ask for shared file descriptor table using rfork() on *BSD (fixe... | Kim Alvefur | 2016-05-25 | 1 | -0/+13 |
* | util.crand: Silence compiler warning | Kim Alvefur | 2016-05-25 | 1 | -1/+1 |
* | util.crand: Include stdlib.h instead of malloc.h for portability (thanks Tobias) | Kim Alvefur | 2016-02-22 | 1 | -1/+1 |
* | util.crand: C binding to one of OpenSSL, Linux getrandom() or OpenBSD arc4ran... | Kim Alvefur | 2016-02-22 | 2 | -1/+164 |
* | Add util.ringbuffer, a ringbuffer with a file handle like interface | Kim Alvefur | 2016-02-02 | 2 | -2/+234 |
* | util.pposix: Expose the uname GNU extension field 'domainname' | Kim Alvefur | 2015-11-25 | 1 | -0/+4 |
* | configure,util-src/Makefile: Make a variable that includes -l for OpenSSL (li... | Kim Alvefur | 2015-09-27 | 1 | -1/+1 |
* | util-src/Makefile: Remove redundant variables (set in config.unix already) | Kim Alvefur | 2015-09-27 | 1 | -8/+0 |
* | util-src/Makefile: Don't make exceptions for how to build .so for util.hashes... | Kim Alvefur | 2015-09-27 | 1 | -4/+2 |
* | util-src/Makefile: Tell Make how to build .so from .o in a modern way (Let bu... | Kim Alvefur | 2015-09-27 | 1 | -6/+2 |
* | util-src/Makefile: Move Lua include path into CFLAGS variable | Kim Alvefur | 2015-09-27 | 1 | -2/+2 |
* | configure, util-src/Makefile: Move OS X deployment flag to an C compiler argu... | Kim Alvefur | 2015-09-26 | 1 | -3/+0 |
* | util-src/Makefile: Use variables for install binary and target directory | Kim Alvefur | 2015-09-26 | 1 | -1/+4 |
* | util-src/Makefile: Move list of .so files in a variable | Kim Alvefur | 2015-09-26 | 1 | -6/+6 |
* | util-src/*.c: Invert Lua 5.2 compat to be 5.2+ by default and a macro to supp... | Kim Alvefur | 2015-04-26 | 6 | -21/+21 |
* | util.encodings: Move declarations to top of function [pedantic] | Kim Alvefur | 2015-05-02 | 1 | -2/+3 |
* | util.pposix: Return error from ftruncate if that fails too (but what would we... | Kim Alvefur | 2015-05-02 | 1 | -1/+4 |
* | util-src/*.c: Per convention call luaL_error() as argument to return | Florian Zeitz | 2015-04-03 | 3 | -5/+6 |
* | util-src/*.c: astyle --indent=tab --brackets=attach --indent-switches --break... | Kim Alvefur | 2015-04-03 | 7 | -716/+846 |
* | util.table, Makefile: New C module that allows pre-allocation of tables to im... | Matthew Wild | 2015-03-31 | 2 | -2/+16 |
* | Merge 0.9->0.10 again | Kim Alvefur | 2015-03-27 | 1 | -3/+94 |
|\ |
|
| * | util.encodings: Expose UTF-8 validation and length checking functions | Kim Alvefur | 2015-03-23 | 1 | -0/+28 |
| * | util.encodings: Perform validation of UTF-8 strings before passing to libidn ... | Kim Alvefur | 2015-03-23 | 1 | -3/+67 |
* | | util-src/*.c: Add macro for compiling with Lua 5.2 | Kim Alvefur | 2014-09-17 | 6 | -0/+24 |
* | | util-src/*.c: Use the more concise lua_setfield | Kim Alvefur | 2014-09-17 | 4 | -13/+7 |
* | | util-src/*.c: Don't create globals when loaded | Kim Alvefur | 2014-09-16 | 6 | -11/+11 |