Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-28 | Send an error presence when the connection to the IRC server fails | Florent Le Coz | |
2014-05-27 | Only close/unmanage the socket if we are connected/connecting | Florent Le Coz | |
Since the socket is now only created and managed whenever the connection is being established, we only close the socket and if it was created (we use -1 to denote the fact that is not yet created, or has been closed) and we only unmanage the socket if it is effectively managed. fix #2529 | |||
2014-05-27 | Fix a by-one error in the CHANTYPES parsing | Florent Le Coz | |
2014-05-27 | Use the CHANTYPES values to differentiate channel or user notices | Florent Le Coz | |
It also happens to fix #2517 because this used to create buggy channels named "auth" and stuf like that. | |||
2014-05-27 | Add support for CHANTYPES isupport element, to know the prefixes of channels | Florent Le Coz | |
2014-05-27 | Support IPv6 connections | Florent Le Coz | |
fix #2522 | |||
2014-05-27 | SocketHandlers own the poller and add themself into it only when the socket ↵ | Florent Le Coz | |
is created We want to call socket() with the parameters provided by getaddrinfo, so we can’t addd the fd into the poller immediately. We need to wait the connection attempt, and then the SocketHandler can call add_socket_handler itself, if the connection succeeds, or is in progress. | |||
2014-05-26 | If both write and read events are available on a socket, only do the read | Florent Le Coz | |
Because the read handler may discover that the connection has been closed, and then remove the socket from the poller. It that case it is no longer valid to try to call the write handler (which may try to reconnect, but since that socket is no longer managed, this is not OK). | |||
2014-05-25 | Also do that cut of message on \n for private messages, and handle /me | Florent Le Coz | |
2014-05-25 | Split the messages on \n when sending them back to the XMPP user | Florent Le Coz | |
2014-05-15 | Only call get_last_child() if the node has children | Florent Le Coz | |
Explain that the behaviour is otherwise undefined, in the comment. | |||
2014-05-15 | "Chat message" is not the same as "any kind of message" | Florent Le Coz | |
2014-05-15 | Stanza:get_name() only returns the name of the tag, without the namespace | Florent Le Coz | |
2014-05-15 | Disconnect the user from all its IRC servers whenever he returns an error | Florent Le Coz | |
fix #2524 | |||
2014-05-14 | Correctly handle the usage of ! as a IRC user mode indicator | Florent Le Coz | |
Since “!” is also the separator between the nickname and the user hostname, having “!” as the user mode (e.g. !nick!~some@host.bla) would cause the nick to be empty. Now we skip it if it is a valid user mode indicator. | |||
2014-05-07 | Forward iq version results to IRC | Florent Le Coz | |
2014-05-06 | Correctly do the error handling when we receive an iq | Florent Le Coz | |
2014-05-06 | Forward CTCP version request to XMPP | Florent Le Coz | |
2014-05-06 | Implement next_id() to | Florent Le Coz | |
2014-04-29 | Add missing std::string_literals | Florent Le Coz | |
2014-04-29 | Fix a little indentation | Florent Le Coz | |
2014-04-29 | Use C++14 string_literals | Florent Le Coz | |
2014-04-28 | Remove binary.hpp and use the c++14 feature 0b | Florent Le Coz | |
2014-04-28 | Upgrade to C++14 | Florent Le Coz | |
2014-04-25 | Include the xhtml-im element in private messages too | Florent Le Coz | |
2014-04-25 | The author name from messages from the server are now nicely formated | Florent Le Coz | |
2014-04-25 | NOTICE from channels are displayed in the channel, with a green "[notice]" | Florent Le Coz | |
2014-04-24 | Respond to a disco query the gateway jid itself | Florent Le Coz | |
2014-04-22 | Fix the kick by correctly using the from and to attributes | Florent Le Coz | |
2014-04-21 | The logging test is less ambiguous | Florent Le Coz | |
2014-04-21 | Improve the test on jidprep | Florent Le Coz | |
2014-04-21 | test.cfg file is now created by the test suite | Florent Le Coz | |
2014-04-21 | Remove unused action_prefix_len variable | Florent Le Coz | |
2014-04-18 | Actually do the last commit, but completely this time | Florent Le Coz | |
2014-04-17 | No more missing text when converting IRC colors to xhtml-im | Florent Le Coz | |
fix #2496 | |||
2014-04-15 | Add support for systemd-daemon | Florent Le Coz | |
2014-04-15 | Call on_connection_failed() when the connection fails to be established | Florent Le Coz | |
2014-04-15 | Remove a useless debug log line | Florent Le Coz | |
2014-04-15 | Add an explanatory topic on the dummy channel | Florent Le Coz | |
2014-04-15 | Joining the dummy channel connects to the irc server | Florent Le Coz | |
2014-04-15 | Do not disconnect from the IRC server if the dummy channel is joined | Florent Le Coz | |
2014-04-15 | Better way to leave the dummy room | Florent Le Coz | |
2014-04-15 | Merge branch 'master' into dummy_chan | Florent Le Coz | |
2014-04-15 | Fix the leave-muc presence stanza | Florent Le Coz | |
2014-04-15 | Ability to leave the dummy channel | Florent Le Coz | |
2014-04-15 | Correctly use the dummy channel whenever we interract with an empty-string chan | Florent Le Coz | |
2014-04-15 | Merge branch 'master' into dummy_chan | Florent Le Coz | |
2014-04-13 | [WIP] DummyIrcChannel | Florent Le Coz | |
2014-04-11 | Do not print an error message from expat if the error was "parsing finished" | Florent Le Coz | |
2014-04-11 | Do not use exceptions for missing tags, improvement in code simplicity | Florent Le Coz | |