admin管理员组

文章数量:1631138

很多聊天室客户端都使用了xmpp协议。

这个协议被人们诟病很多,但是对于简单的消息传送还是有很大的使用价值的。

XMPP is the open standard for messaging and presence。

gloox is a popular library for the Extensible Messaging and Presence Protocol (XMPP), formerly known as Jabber.

所以写了一个简单的例子,如何使用gloox连接服务器,监听消息,以及如何应答。

首先是设置 MessageHandler:

class Bot : public MessageHandler {
public:
    Bot() {
        JID jid("bot@localhost");
        client = new Client( jid, "botpwd" );
        connListener = new ConnListener();
        client->registerMessageHandler( this );
        client->registerConnectionListener(connListener);
        client->connect(true);
    }

这里我们创建了一个客户端,有ID和密码。

接下来,我们需要ConnectionListener就处理连接。
而ConnectionListener一定要registered with 客户端。这个一会再说。

现在是连接服务器,我们采用non-bloking的方式。

为了能够处理消息,我们要实现handleMessage方法:

virtual void handleMessage( const Message& stanza, MessageSession* session = 0 ) {
    cout << "Received message: " << stanza << endl;
    Me

本文标签: 客户端协议Windowsglooxxmpp