From: <sea...@us...> - 2006-09-21 21:56:21
|
Revision: 17334 http://svn.sourceforge.net/gaim/?rev=17334&view=rev Author: seanegan Date: 2006-09-21 14:56:19 -0700 (Thu, 21 Sep 2006) Log Message: ----------- There are a bunch of things we don't send as an xmlnode, so here's a sending-text signal for plugins that care about that Modified Paths: -------------- trunk/libgaim/protocols/jabber/jabber.c Modified: trunk/libgaim/protocols/jabber/jabber.c =================================================================== --- trunk/libgaim/protocols/jabber/jabber.c 2006-09-21 12:47:44 UTC (rev 17333) +++ trunk/libgaim/protocols/jabber/jabber.c 2006-09-21 21:56:19 UTC (rev 17334) @@ -255,7 +255,9 @@ /* If we've got a security layer, we need to encode the data, * splitting it on the maximum buffer length negotiated */ - + + gaim_signal_emit(my_protocol, "jabber-sending-text", js->gc, data); + #ifdef HAVE_CYRUS_SASL if (js->sasl_maxbuf>0) { int pos; @@ -1906,6 +1908,12 @@ gaim_value_new(GAIM_TYPE_SUBTYPE, GAIM_SUBTYPE_CONNECTION), gaim_value_new_outgoing(GAIM_TYPE_SUBTYPE, GAIM_SUBTYPE_XMLNODE)); + gaim_signal_register(plugin, "jabber-sending-text", + gaim_marshal_VOID__POINTER_POINTER, NULL, 2, + gaim_value_new(GAIM_TYPE_SUBTYPE, GAIM_SUBTYPE_CONNECTION), + gaim_value_new(GAIM_TYPE_STRING)); + + return TRUE; } @@ -1914,7 +1922,9 @@ gaim_signal_unregister(plugin, "jabber-receiving-xmlnode"); gaim_signal_unregister(plugin, "jabber-sending-xmlnode"); - + + gaim_signal_unregister(plugin, "jabber-sending-text"); + return TRUE; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |