~singpolyma/biboumi

7c671499 — Florent Le Coz 10 years ago
Implement part and join, both ways
f38b31a6 — Florent Le Coz 10 years ago
Remove IRC colors from the body when forwarding it to XMPP
af554889 — Florent Le Coz 10 years ago
Cosmetic
ccebe901 — Florent Le Coz 10 years ago
Check UTF-8 encoding, and convert strings to UTF-8

Handle conversion errors properly by inserting � instead.  Add a binary
header to provide portable way to write binary literals (I like them) Also
add a test file.  ref #2404
a418b6ed — Florent Le Coz 10 years ago
Send and receive messages

Also correctly respond to PING with the id, escape some XML content, but not
always
4b76a30d — Florent Le Coz 10 years ago
Add make_unique.hpp and split.hpp
bf7b05ef — Florent Le Coz 10 years ago
Implement the Bridge class to translate between the two protocols

Add all useful classes as well: Jid, Iid, IrcChannel, IrcUser etc to
properly keep the informations about what we receive from the IRC server.

Only handle the MUC join stanza, and send the list of users in the IRC
channel to the XMPP user, and the IRC channel’s topic, for now.
dea7f60f — Florent Le Coz 10 years ago
Add FindCryptoPP to the cmake search stuf
d834d6ed — Florent Le Coz 10 years ago
Exit the poller when it handles no connection at all
f2f94618 — Florent Le Coz 10 years ago
Add a basic XMPP component implementation, doing the authentication
5bbd34a3 — Florent Le Coz 10 years ago
Add an XmppParser, and Stanza classes

Generate events on stanza and stream open/close.
Create Stanza and serialize them.

Note: XML namespaces are not handled yet.
87aaacdb — Florent Le Coz 10 years ago
Rename libirc and libxmpp to irc and xmpp
e332d7a2 — Florent Le Coz 10 years ago
Add initial CMakeLists.txt that compiles the current code
358b53fa — Florent Le Coz 10 years ago
Move the basic socket implementation into the SocketHandler class

(that is, the read/write/connect/etc)
Because this code is actually common for both the IrcClient and
XmppComponent class. These two classes have to implement some higher level
callbacks (parsing the data provided in the buffers, doing stuff when the
connection is done) instead of doing the read/write/connect low level
things.
7f580dbc — Florent Le Coz 10 years ago
Add irc_message.hpp
4027ef8c — Florent Le Coz 10 years ago
Basic IRC message parsing/sending
64c1b28c — Florent Le Coz 10 years ago
Add some dummy main
7869ef2a — Florent Le Coz 10 years ago
First step of the connection skeleton

Basic connect, socket creating, polling, recving, etc.