comparison src/protocols/msn/session.h @ 19784:bc30c6270d9f

[gaim-migrate @ 16473] add the Framework of SOAP request Now can retrieve the Contact via SOAP Request. so many bug still exist! commited by MaYuan<mayuan2006@gmail.com> committer: Ethan Blanton <elb@pidgin.im>
author Ma Yuan <mayuan2006@gmail.com>
date Sun, 09 Jul 2006 16:48:25 +0000
parents 442b23efba54
children 23258253c7a0
comparison
equal deleted inserted replaced
19783:995aea35b05c 19784:bc30c6270d9f
36 #include "group.h" 36 #include "group.h"
37 37
38 #include "cmdproc.h" 38 #include "cmdproc.h"
39 #include "nexus.h" 39 #include "nexus.h"
40 #include "httpconn.h" 40 #include "httpconn.h"
41 #include "contact.h"
41 42
42 #include "userlist.h" 43 #include "userlist.h"
43 #include "sync.h" 44 #include "sync.h"
44 45
45 /** 46 /**
92 gboolean destroying; /**< A flag that states if the session is being destroyed. */ 93 gboolean destroying; /**< A flag that states if the session is being destroyed. */
93 gboolean http_method; 94 gboolean http_method;
94 95
95 MsnNotification *notification; 96 MsnNotification *notification;
96 MsnNexus *nexus; 97 MsnNexus *nexus;
98 MsnContact *contact;
97 MsnSync *sync; 99 MsnSync *sync;
98 100
99 MsnUserList *userlist; 101 MsnUserList *userlist;
100 102
101 int servconns_count; /**< The count of server connections. */ 103 int servconns_count; /**< The count of server connections. */
105 107
106 int conv_seq; /**< The current conversation sequence number. */ 108 int conv_seq; /**< The current conversation sequence number. */
107 109
108 struct 110 struct
109 { 111 {
112 /*t and p, get via USR TWN*/
113 char *t;
114 char *p;
115
110 char *kv; 116 char *kv;
111 char *sid; 117 char *sid;
112 char *mspauth; 118 char *mspauth;
113 unsigned long sl; 119 unsigned long sl;
114 char *file; 120 char *file;
115 char *client_ip; 121 char *client_ip;
116 int client_port; 122 int client_port;
117
118 } passport_info; 123 } passport_info;
119 }; 124 };
120 125
121 /** 126 /**
122 * Creates an MSN session. 127 * Creates an MSN session.