Commit graph

278 commits

Author SHA1 Message Date
Kim Alvefur
022725ee9a Back out changeset 2c1583bb0e0f
Same reason as 712b2e6a09d9
2020-10-15 17:21:58 +02:00
Kim Alvefur
a7da61a180 Back out 6dde2c9fa272: Doesn't work on Lua 5.1 2020-10-15 17:12:33 +02:00
Kim Alvefur
1ea5b454e7 util.strbitop: Remove redundant init function
When you have 3 almost identical functions, you tend to edit one and
then copypaste. Forgot to remove this line from the other two.
2020-10-15 17:05:53 +02:00
Kim Alvefur
b85eec8763 util.strbitop: Create buffer in the correct size (optimization)
This avoids dynamically growing the buffer as Lua does when luaL_addchar
is used, thus saving on realloc calls.
2020-10-15 16:43:30 +02:00
Kim Alvefur
00c763eed0 util.strbitop: Reformat code
astyle \
	--indent=tab \
	--attach-classes \
	--indent-switches \
	--break-blocks \
	--pad-oper \
	--unpad-paren \
	--add-braces \
	--align-pointer=name \
	--lineend=linux \
	*.c
2020-10-15 16:26:56 +02:00
Kim Alvefur
5d87a7d46f util.strbitop: Library for bitwise operations on strings 2019-09-07 13:37:47 +02:00
Kim Alvefur
d0cb023ea8 util.pposix: Avoid overflow of malloc info at 2GB (fixes #1445 until 4GB) 2019-11-16 16:45:33 +01:00
Kim Alvefur
b8598a8cc0 util.encodings: Allow unassigned code points in ICU mode to match libidn behavior (fixes #1348) 2019-04-24 16:16:19 +02:00
Kim Alvefur
0664ef7a56 util.hashes: Use HMAC function provided by OpenSSL (fixes #1345) 2019-04-19 13:12:00 +02:00
Kim Alvefur
b105494187 util-src/makefile: Update with util.poll and util.compat (fixes #1251) 2018-11-30 16:00:12 +01:00
Matthew Wild
3bc2c02797 util.xpcall, util.compat: Add non-hacky multi-argument xpcall() for Lua 5.1 2018-10-26 19:29:08 +01:00
Kim Alvefur
6d12622b2a net.server_epoll: Special handling of signal interrupts 2018-10-12 03:22:09 +02:00
Kim Alvefur
ec7fb3ee61 net.server_epoll: Ignore ENOENT when deregitering socket
It should not really happen
2018-10-12 03:21:11 +02:00
Kim Alvefur
6f088c5034 net.server_epoll: Graceful handling of registering already added socket 2018-10-12 03:20:09 +02:00
Kim Alvefur
dd8a4ff498 util.poll: Fix inverted logic 2018-10-11 18:56:11 +02:00
Kim Alvefur
ea072c9adb util.poll: Handle failed epoll FD creation 2018-10-11 18:52:12 +02:00
Kim Alvefur
dc9800c929 util.poll: Early return from __gc in case of no valid epoll FD
This could happen if the epoll FD has already been closed or
the epoll_create call failed
2018-10-11 18:50:04 +02:00
Kim Alvefur
080fdb85d2 util.poll: Increase max epoll events per call
This makes the struct roughly the same size in both epoll and select
mode (64bit).

There doesn?t seem to be much guidance on an appropriate size, it does
not seem to matter too much since if there are more events they will
simply show up in the next epoll_wait call. The number of exactly
concurrent events should be fairly low most of the time anyways.
2018-10-08 15:33:15 +02:00
Kim Alvefur
34be9eaebf util.poll: Zero FD sets watched for errors on creation 2018-10-07 20:58:51 +02:00
Kim Alvefur
e70b1af98a net.poll: Guard against negative or too large FDs 2018-10-07 18:44:46 +02:00
Kim Alvefur
b39130c595 util.poll: Fix missing return for adding duplicate FD 2018-10-07 18:41:44 +02:00
Kim Alvefur
1da6bcc301 util.poll: Tweak metatable name field 2018-10-06 18:32:57 +02:00
Kim Alvefur
3e48ac275a util.poll: Fix monitoring of socket exceptions in select mode
Since state->err is a set of all watched FDs, this mistake caused all
sockets to appear to have errors.
2018-10-06 17:19:50 +02:00
Kim Alvefur
128f7d4593 util.poll: Lua 5.1 compat 2018-09-15 01:17:53 +02:00
Kim Alvefur
afea46904d util.poll: Remove 'inline' from function declaration
Why does this fix building?
2018-09-15 01:05:59 +02:00
Kim Alvefur
a638626334 util.poll: Import poll library with epoll and select support 2018-05-16 23:56:34 +02:00
Kim Alvefur
90cb134f6d util.pposix: Allow _DARWIN_C_SOURCE to be overriden
Like the others there
2018-09-08 11:52:44 +02:00
Kim Alvefur
74fa6ced21 Merge 0.10->trunk 2018-09-08 11:51:52 +02:00
Kim Alvefur
e6797cc6b2 util.pposix: Fix or silence a warning on OS X (#1202) 2018-09-08 11:46:02 +02:00
Kim Alvefur
02b648d54f Merge 0.10->trunk 2018-09-08 11:42:22 +02:00
Kim Alvefur
8d7eede4ac util.pposix: Restrict use of malloc_info to glibc
Fixes build on musl based distros like Alpine linux
2018-09-07 15:50:12 +02:00
Kim Alvefur
cc97b76304 util.pposix: Do not attempt to assign to stdio variables [pedantic]
Fixes build on gcc 6.4.0

See also https://stackoverflow.com/a/586416
2018-09-07 15:25:33 +02:00
Kim Alvefur
4d3ba7e407 util.pposix: Fix building on OS X (#1202) 2018-08-18 12:07:40 +02:00
Kim Alvefur
bee67a5204 util-src/makefile: Add util.time to BSD makefile 2018-08-11 17:33:11 +02:00
Kim Alvefur
ac035e9dc8 util.time: Allow for already set constant 2018-08-11 16:55:07 +02:00
Kim Alvefur
5b30abd000 util.signal: Fix loop (fixes #1047)
A pre-commit version probably started with i = nsig and counted down,
then an incomplete change to counting up was done
2017-11-30 19:35:35 +01:00
Kim Alvefur
4b1e3a2b85 util.signal: Use a static array to keep track of pending signals (fixes #1029) 2017-11-14 15:20:14 +01:00
Kim Alvefur
45464dfc20 util.encodings: Use the 'idx' argument correctly [-Wunused-parameter] 2017-10-05 12:48:36 +02:00
Kim Alvefur
42cd234969 util.crand: Build with musl/non-glibc (can't have undefined argument-taking macros?) 2017-04-25 01:35:13 +02:00
Kim Alvefur
943f1f1ea8 util.time: Add monotonic time 2017-03-09 04:37:12 +01:00
Kim Alvefur
aa64aada46 util.time: Convert to C 2017-03-09 04:34:28 +01:00
Emmanuel Gil Peyrot
b12af44abd encodings: Explicitly say that base64 decoding falls through in a switch, fixes a warning in gcc?7+. 2018-08-08 09:29:32 +02:00
Emmanuel Gil Peyrot
c2e3322fc6 pposix: Generate an error when a passed string isn?t "unlimited". 2018-08-08 09:28:42 +02:00
Emmanuel Gil Peyrot
a18251e4cd pposix, signal: Ignore unused arguments. 2018-08-08 09:28:04 +02:00
Emmanuel Gil Peyrot
bae1d20e54 net, pposix, signal: Check for redefined defines, fix warnings. 2018-08-08 09:27:34 +02:00
Kim Alvefur
922039c0d6 util.pposix: Use freopen(3) when replacing standard IO streams (thanks ratchetfreak)
Man page says this is what freopen(3) is for.
2018-07-12 20:42:22 +02:00
Kim Alvefur
9234948602 util.ringbuffer: Fix typo in comment [codespell] 2018-04-06 22:26:53 +02:00
Kim Alvefur
e698dcfc66 Add makefiles compatible with BSD make 2018-03-11 06:01:19 +01:00
Kim Alvefur
df4e8ebbef Rename Makefile -> GNUmakefile to reflect dependency on GNU Make 2017-10-31 17:28:23 +01:00
Kim Alvefur
190964ec3e util.ringbuffer: Add method for discarding buffered data without returning it to lua 2018-02-24 14:45:06 +01:00