diff libpurple/server.c @ 22739:17cda378a2dd

Added "chat-join-failed" signal, emitted by a new serv_got_join_chat_failed() function in server.c. This is emitted with the PurpleConnection and chat name and allows a UI or plugin which was expecting a group chat to be joined to know if failure occurred. serv_got_join_chat_failed() is only called by jabber so far; I know that at least oscar should call it some situations, as well, such as when a busted SNAC error is received after trying to join a chat with an invalid room name.
author Evan Schoenberg <evan.s@dreskin.net>
date Tue, 29 Apr 2008 01:46:40 +0000
parents b398fe0a450e
children 1517d3c763fc f1a4ad1526a2
line wrap: on
line diff
--- a/libpurple/server.c	Mon Apr 28 20:10:41 2008 +0000
+++ b/libpurple/server.c	Tue Apr 29 01:46:40 2008 +0000
@@ -967,6 +967,12 @@
 	purple_signal_emit(purple_conversations_get_handle(), "chat-left", conv);
 }
 
+void serv_got_join_chat_failed(PurpleConnection *gc, const char *name)
+{
+	purple_signal_emit(purple_conversations_get_handle(), "chat-join-failed",
+					gc, name);
+}
+
 void serv_got_chat_in(PurpleConnection *g, int id, const char *who,
 					  PurpleMessageFlags flags, const char *message, time_t mtime)
 {