Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-11 | Include a private and no-copy nodes in private <message/> to avoid carbon ↵ | louiz’ | |
duplication | |||
2016-10-07 | Correctly set status="110" in the presence for the target of a kick | louiz’ | |
2016-10-04 | Respond to muc#traffic requests | louiz’ | |
fix #3069 | |||
2016-10-03 | Implement result-set-management for LIST queries | louiz’ | |
ref #2948 | |||
2016-09-29 | Re-add the ad-hoc command the was removed by mistake in the previous commit | louiz’ | |
Thank you, e2e tests | |||
2016-09-29 | Add AdhocCommandHandlers::add_command to simplify the usage of this class | louiz’ | |
And make things a little bit clearer | |||
2016-09-29 | Look for uuid/uuid.h instead of just uuid.h | louiz’ | |
Avoids a conflict between /usr/include/uuid.h and /usr/local/include/uuid/uuid.h on freebsd | |||
2016-09-04 | MAM results can be filtered by start and end dates | louiz’ | |
2016-08-29 | Add the missing includes back | louiz’ | |
2016-08-28 | Respond to MAM requests on a channel JID | louiz’ | |
At the moment, result-set-management is not implemented, the whole history (well, at most 1024 messages) is returned. | |||
2016-08-23 | Use Z instead of z in the timestamp format | louiz’ | |
2016-08-23 | Don't use put_time() because it’s not in gcc 4.9, in shitty-debian ↵ | louiz’ | |
“stable” Use strftime instead | |||
2016-08-22 | Add missing ctime include | louiz’ | |
2016-08-22 | When joining a channel, send the most recent history found in the database | louiz’ | |
2016-07-04 | Replace all include guards by #pragma once | louiz’ | |
It’s $CURRENT_YEAR | |||
2016-06-24 | Properly set the “from” of the ping results to the correct full JID | louiz’ | |
2016-06-13 | Show off, with some variadic templates, for the logger module | louiz’ | |
2016-06-02 | Check the length of the JID parts when copying into the jidprep buffer | louiz’ | |
We trust the XMPP server, but maybe not enough to not check that | |||
2016-05-13 | Use “using” instead of typedef | louiz’ | |
2016-05-04 | Style fix | louiz’ | |
Move all constructors at the top of classes | |||
2016-04-27 | Include the Configure ad-hoc command on biboumi's JID for fixed_irc_server | louiz’ | |
Because a jid like “freenode.example.org” is both the JID for the configured IRC server, and biboumi’s JID. fix #3175 | |||
2016-04-22 | Forward the topic authors, handle the author from 333 messages | louiz’ | |
fix #2 | |||
2016-02-22 | log the handshake + stream opening/close in a more consistent way | Florent Le Coz | |
2016-02-10 | Remove unused xml_unescape() function | Florent Le Coz | |
2016-01-04 | Use the configured encoding value when decoding received messages | Florent Le Coz | |
2015-12-23 | A few cleanups, and make a few things more modern | Florent Le Coz | |
2015-12-23 | Also store a reference instead of a pointer, in AdhocCommandsHandler | Florent Le Coz | |
2015-12-13 | Make the XMPP server address configurable. | Stuart Mumford | |
fix #3145 | |||
2015-12-03 | Add an ad-hoc command to disconnect a user from one or more IRC server | Florent Le Coz | |
fix #3077 | |||
2015-12-03 | JID class provides bare() and full() methods | Florent Le Coz | |
2015-12-03 | Small cleanup | Florent Le Coz | |
2015-12-03 | Provide a “var” map in AdhocSession objects, to save values between each ↵ | Florent Le Coz | |
step | |||
2015-10-28 | Refactor XmppParser::end_element to make it clearer | Florent Le Coz | |
Both for me, and apparently for clang static analyzer, who reported a (imo) false positive. | |||
2015-10-26 | Style, add a few “this->” | Florent Le Coz | |
2015-09-18 | XmlNode::add_child can also take a copy of a node | Florent Le Coz | |
2015-09-18 | Add an AdhocCommandsHandler to store commands specific to IRC servers | Florent Le Coz | |
2015-09-18 | Store the target jid in the AdhocSession objects | Florent Le Coz | |
2015-09-01 | Trivial cleanup | Florent Le Coz | |
2015-09-01 | Use unique_ptr to store the XmlNode’s children | Florent Le Coz | |
Also fix some constness things | |||
2015-09-01 | Little cleanup of the XmlNode class | Florent Le Coz | |
Use map instead of unordered map (it's not slower, and it's shorter). Use the default move constructor. | |||
2015-09-01 | XmlNode::to_string uses an ostringstream instead of a string | Florent Le Coz | |
On my poor benchmark, it was infinitesimally faster. | |||
2015-09-01 | XmlNodes are now always closed | Florent Le Coz | |
Remove the close() method and closed attribute. Remove all the calls to close(). (Save one bool per XmlNode, yay, and save a few ifs and some useless function calls. At best it should be unnoticeably faster and lighter and save a few keystrokes in the future) | |||
2015-07-09 | Fix the log_* macros to not have two ; at the end of lines | Florent Le Coz | |
2015-06-09 | Do not send the admin-only adhoc commands to non-admin users | Florent Le Coz | |
They were not able to execute them anyway, so this was just a little usability issue. | |||
2015-05-28 | louloulibs is directly included, instead of being a submodule | Florent Le Coz | |
Because this is a nightmare to manage | |||
2015-05-27 | Avoid some potential race conditions by blocking the signals we manage | Florent Le Coz | |
They are atomically unblocked in the ppoll/epoll_pwait calls, avoiding any race condition on the check of the “stop” or “reload” booleans. | |||
2015-05-13 | Update to latest louloulibs revision, and add test for hostname validity | Florent Le Coz | |
fix #2694 | |||
2015-05-07 | Update to latest louloulibs | Florent Le Coz | |
fix #3042 | |||
2015-04-21 | Properly check for connecting or connected status before reconnecting | Florent Le Coz | |
Note, in our context, is_connecting() includes the resolving part as well as the actual connection (if we are using c-ares) fix #3048 | |||
2015-04-20 | Update louloulibs submodule to the correct revision | Florent Le Coz | |