libgaim/protocols/msn/msn.c

changeset 14604
67a7c42a8654
parent 14570
a3f5c8a5ebc9
child 14605
2fd8baf4e5fb
--- a/libgaim/protocols/msn/msn.c	Tue Sep 12 20:11:56 2006 +0000
+++ b/libgaim/protocols/msn/msn.c	Tue Sep 12 21:57:15 2006 +0000
@@ -881,6 +881,14 @@
 	return MSN_TYPING_SEND_TIMEOUT;
 }
 
+static int 
+msn_send_raw(GaimConnection *gc, const char *buf, int len)
+{
+	MsnServConn *servconn = (MsnServConn*)gc->proto_data;
+	return msn_servconn_write(servconn, buf, len);
+}
+	
+
 static void
 msn_set_status(GaimAccount *account, GaimStatus *status)
 {
@@ -2012,6 +2020,7 @@
 	msn_new_xfer,			/* new_xfer */
 	NULL,					/* offline_message */
 	NULL,					/* whiteboard_prpl_ops */
+	msn_send_raw,				/* send_raw */
 };
 
 static GaimPluginInfo info =

mercurial