Jason Volk
Jason Volk
Construct sends array of related events starting with the oldest and ending with the newest. Element appears to expect the inverse, as it applies its strike-through/coloring feature incorrectly right now....
Currently there is a `log mask` which toggles named loggers on or off for either the console or file outputs. There is also a `log level` which masks levels less-than...
Synapse pursues CNAME results for both SRV targets and well-known lookups. The former is a direct violation of the IETF's specification and the latter is a violation (or oversight) of...
https://matrix.org/docs/spec/client_server/unstable#extensions-to-sync
No method to invite; possible issues with remotes due to `internal(room) = true`. This *must* work for clustering and for remote administration.
Without `RWF_NOWAIT (since Linux 4.14)` the call to `io_submit(2)` in `ircd/fs_aio.cc` is liable to block the entire daemon under certain conditions. A non-blocking use of this call allows the daemon...
The room rejoin procedure in `m_user_profile.cc` runs from the `vm.effect` hook during a profile update. This usually means execution occurs on the same `ircd::ctx` as the evaluator of the profile...
Supporting HTTP range requests foremost allows efficient transfer of large media on behalf of clients for the `/media/` endpoints. Construct conducts downloads of files from remote servers synchronously on request...
Possibly related to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42679 The only occurs for `std::cout`/`std::cerr`. Our own ostreams still work. This occurs even if `` is included everywhere and `std::ios_base::Init` is invoked. I believe the solution...