diff src/protocols/jabber/iq.c @ 7170:1cf80749f2f0

[gaim-migrate @ 7737] jabber gets file receive support again. jabber should now be able to do everything the old plugin did, and more. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Mon, 06 Oct 2003 02:04:55 +0000
parents 6c8706109f92
children b250288fa948
line wrap: on
line diff
--- a/src/protocols/jabber/iq.c	Mon Oct 06 01:46:31 2003 +0000
+++ b/src/protocols/jabber/iq.c	Mon Oct 06 02:04:55 2003 +0000
@@ -23,6 +23,7 @@
 #include "prefs.h"
 
 #include "iq.h"
+#include "oob.h"
 #include "roster.h"
 
 #ifdef _WIN32
@@ -230,7 +231,7 @@
 	} else if(!strcmp(xmlns, "jabber:iq:register")) {
 		jabber_register_parse(js, packet);
 	} else if(!strcmp(xmlns, "jabber:iq:oob")) {
-		/* XXX: need to re-implement file receive for the old-skool way */
+		jabber_oob_parse(js, packet);
 	} else {
 		gaim_debug(GAIM_DEBUG_WARNING, "jabber", "Unknown query: %s\n", xmlns);
 	}