diff src/protocols/msn/msnslp.h @ 6868:ab80de7a74d1

[gaim-migrate @ 7414] Commitinating the current MSNSLP code. It's not working.. I don't know why. No clients will respond to my messages, even though they appear very valid. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 17 Sep 2003 02:10:37 +0000
parents 8f228a7d5076
children ac638b90da44
line wrap: on
line diff
--- a/src/protocols/msn/msnslp.h	Wed Sep 17 01:50:15 2003 +0000
+++ b/src/protocols/msn/msnslp.h	Wed Sep 17 02:10:37 2003 +0000
@@ -38,6 +38,13 @@
 	long session_id;
 	long base_id;
 	long prev_msg_id;
+
+	size_t offset;
+
+	void *orig_body;
+	size_t orig_len;
+
+	MsnMessage *outgoing_msg;
 };
 
 /**
@@ -80,6 +87,15 @@
 void msn_slp_session_send_msg(MsnSlpSession *session, MsnMessage *msg);
 
 /**
+ * Sends an acknowledgement message over a MSNSLP session for the
+ * specified message.
+ *
+ * @param slpsession The MSNSLP session to send the acknowledgement over.
+ * @param acked_msg  The message to acknowledge.
+ */
+void msn_slp_session_send_ack(MsnSlpSession *session, MsnMessage *acked_msg);
+
+/**
  * Requests a User Display image over a MSNSLP session.
  *
  * @param slpsession The MSNSLP session to request the image over.