Kim Alvefur

Results 42 comments of Kim Alvefur

@mwild1 > Is everyone affected using Lua 5.3? I think what I meant was that **all** numbers in Lua 5.2 are floats, so floats is what gets pushed, but MySQL...

https://github.com/sidorares/node-mysql2/issues/1239#issuecomment-760314979 suggests that MySQL expects these numbers to be **strings**. And indeed: ```lua s = assert(db:prepare("SELECT 1 LIMIT ? OFFSET ?")) assert(s:execute(1, 1)) --[[ stdin:1: Error executing statement parameters: Incorrect...

LuaSocket does have a `:dirty()` method that returns `true` if there is data in the buffer. I suppose either LuaEvent or its users could check this and either re-call a...

Hm, now that I read this again I'm not sure it's clear that we're using 0s timeouts, and we read less data than what is available. Then the remaining data...

Duplicate of #3920 maybe? Didn't see that one when I searched before. Seems to be the same in scope as the wontfix'd #3722 ? I tried to reduce the scope...

Stroke, the Swiften Java port, is GPL. Conversations is GPL too?

@Bengt Right. So there should be no problem with using Stroke code for SCRAM in Conversations.

If @mimi89999 s server takes issue with something, it would probably be the one aborting the connection. Here it's the chatsecure one aborting it. If you have logs that capture...

Attempting to connect with no non-forward-secret ciphers enabled, it fails. Using Prosody default ciphers, AES256-GCM-SHA384 is selected.

It is handled, but the exact behavior has changed in OpenSSL and/or LuaSec in a way that complicates things. Before, it was treated more like how normal DH is treated;...