diff libpurple/server.h @ 22756: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 3232cc79fa51
children 1517d3c763fc f1a4ad1526a2
line wrap: on
line diff
--- a/libpurple/server.h	Mon Apr 28 20:10:41 2008 +0000
+++ b/libpurple/server.h	Tue Apr 29 01:46:40 2008 +0000
@@ -166,6 +166,15 @@
 
 PurpleConversation *serv_got_joined_chat(PurpleConnection *gc,
 									   int id, const char *name);
+/**
+ * Called by a prpl when an attempt to join a chat via serv_join_chat()
+ * fails.
+ *
+ * @param gc      The connection on which chat joining failed
+ * @param name    The name of the chat which we did not join
+ */
+void serv_got_join_chat_failed(PurpleConnection *gc, const char *name);
+	
 void serv_got_chat_left(PurpleConnection *g, int id);
 void serv_got_chat_in(PurpleConnection *g, int id, const char *who,
 					  PurpleMessageFlags flags, const char *message, time_t mtime);