diff --git a/include/transport/conversation.h b/include/transport/conversation.h index cda549cb4dfae9c5687cb9a0dfedeedbb09bb13b..83e22672a8635fe9afba9333d089a4c5ca08ab0d 100644 --- a/include/transport/conversation.h +++ b/include/transport/conversation.h @@ -40,7 +40,8 @@ class Conversation { PARTICIPANT_FLAG_BANNED = 4, PARTICIPANT_FLAG_NOT_AUTHORIZED = 8, PARTICIPANT_FLAG_ME = 16, - PARTICIPANT_FLAG_KICKED = 32 + PARTICIPANT_FLAG_KICKED = 32, + PARTICIPANT_FLAG_ROOM_NOT_FOUD = 64 } ParticipantFlag; typedef struct _Participant { @@ -70,6 +71,8 @@ class Conversation { /// \param nickname For MUC conversation this is nickname of room participant who sent this message. void handleMessage(boost::shared_ptr &message, const std::string &nickname = ""); + void handleRawMessage(boost::shared_ptr &message); + /// Handles participant change in MUC. /// \param nickname Nickname of participant which changed.