diff src/protocols/msn/servconn.h @ 5962:115769a4c6fc

[gaim-migrate @ 6409] Guess I found out. It crashes gaim! This fix should work... hahahaha right. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 26 Jun 2003 10:13:58 +0000
parents 4f72b611f0ee
children b7e113a59b51
line wrap: on
line diff
--- a/src/protocols/msn/servconn.h	Thu Jun 26 09:39:21 2003 +0000
+++ b/src/protocols/msn/servconn.h	Thu Jun 26 10:13:58 2003 +0000
@@ -34,6 +34,14 @@
 
 #include "session.h"
 
+typedef enum
+{
+	MSN_MULTILINE_MSG,
+	MSN_MULTILINE_IPG,
+	MSN_MULTILINE_NOT
+
+} MsnMultilineType;
+
 struct _MsnServConn
 {
 	MsnSession *session;
@@ -53,10 +61,11 @@
 
 	GSList *txqueue;
 
-	gboolean parsing_msg;
+	gboolean parsing_multiline;
+	MsnMultilineType multiline_type;
 	char *msg_passport;
 	char *msg_friendly;
-	int msg_len;
+	int multiline_len;
 
 	GHashTable *commands;
 	GHashTable *msg_types;