Mercurial > pidgin
annotate src/protocols/msn/session.h @ 10568:fed2a7c2471d
[gaim-migrate @ 11954]
Some MSN bits:
- Fix HTTP Method works when using an HTTP proxy that require authentication
(Bastien Durel)
- Better error reporting when the MSN servers are temporarily unavailable
- Prevent zombie failed switchboard connections swallowing up messages
- Fix win32 crashes receiving messages from aMSN with no formatting info
- Fix a crash when the connection to the nexus server fails
- maybe some other stuff, I forgot how much had piled up
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Thu, 03 Feb 2005 19:47:52 +0000 |
| parents | bec9130b24d2 |
| children | f52ab405f1ab |
| rev | line source |
|---|---|
| 5309 | 1 /** |
| 2 * @file session.h MSN session functions | |
| 3 * | |
| 4 * gaim | |
| 5 * | |
|
9198
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
6 * Gaim is the legal property of its developers, whose names are too numerous |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
7 * to list here. Please refer to the COPYRIGHT file distributed with this |
|
ab6636c5a136
[gaim-migrate @ 9993]
Christian Hammond <chipx86@chipx86.com>
parents:
9193
diff
changeset
|
8 * source distribution. |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
9 * |
| 5309 | 10 * This program is free software; you can redistribute it and/or modify |
| 11 * it under the terms of the GNU General Public License as published by | |
| 12 * the Free Software Foundation; either version 2 of the License, or | |
| 13 * (at your option) any later version. | |
| 14 * | |
| 15 * This program is distributed in the hope that it will be useful, | |
| 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 18 * GNU General Public License for more details. | |
| 19 * | |
| 20 * You should have received a copy of the GNU General Public License | |
| 21 * along with this program; if not, write to the Free Software | |
| 22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 23 */ | |
| 24 #ifndef _MSN_SESSION_H_ | |
| 25 #define _MSN_SESSION_H_ | |
| 26 | |
| 27 typedef struct _MsnSession MsnSession; | |
| 28 | |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
29 #include "sslconn.h" |
|
9193
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
30 |
|
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
31 #include "notification.h" |
| 5309 | 32 #include "switchboard.h" |
| 33 #include "user.h" | |
|
9193
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
34 #include "group.h" |
|
8171
d0ba2f7b40e7
[gaim-migrate @ 8884]
Christian Hammond <chipx86@chipx86.com>
parents:
7631
diff
changeset
|
35 |
|
9193
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
36 #include "cmdproc.h" |
|
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
37 #include "nexus.h" |
| 10463 | 38 #include "httpconn.h" |
|
9193
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
39 |
|
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
40 #include "userlist.h" |
|
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
41 #include "sync.h" |
| 5309 | 42 |
| 10481 | 43 /** |
| 44 * Types of errors. | |
| 45 */ | |
| 46 typedef enum | |
| 47 { | |
| 48 MSN_ERROR_SERVCONN, | |
| 10519 | 49 MSN_ERROR_UNSUPPORTED_PROTOCOL, |
| 10481 | 50 MSN_ERROR_HTTP_MALFORMED, |
| 51 MSN_ERROR_AUTH, | |
| 52 MSN_ERROR_BAD_BLIST, | |
| 53 MSN_ERROR_SIGN_OTHER, | |
| 10568 | 54 MSN_ERROR_SERV_DOWN, |
| 55 MSN_ERROR_SERV_UNAVAILABLE | |
| 10481 | 56 |
| 57 } MsnErrorType; | |
| 58 | |
| 59 /** | |
| 60 * Login steps. | |
| 61 */ | |
| 62 typedef enum | |
| 63 { | |
| 64 MSN_LOGIN_STEP_START, | |
| 65 MSN_LOGIN_STEP_HANDSHAKE, | |
| 66 MSN_LOGIN_STEP_TRANSFER, | |
| 10514 | 67 MSN_LOGIN_STEP_HANDSHAKE2, |
| 10481 | 68 MSN_LOGIN_STEP_AUTH_START, |
| 69 MSN_LOGIN_STEP_AUTH, | |
| 70 MSN_LOGIN_STEP_GET_COOKIE, | |
| 71 MSN_LOGIN_STEP_AUTH_END, | |
| 72 MSN_LOGIN_STEP_SYN, | |
| 73 MSN_LOGIN_STEP_END | |
| 74 | |
| 75 } MsnLoginStep; | |
| 76 | |
| 77 #define MSN_LOGIN_STEPS MSN_LOGIN_STEP_END | |
| 78 | |
| 5309 | 79 struct _MsnSession |
| 80 { | |
|
5564
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5518
diff
changeset
|
81 GaimAccount *account; |
|
5363
ebebc833cf77
[gaim-migrate @ 5739]
Christian Hammond <chipx86@chipx86.com>
parents:
5327
diff
changeset
|
82 MsnUser *user; |
|
9193
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
83 int state; |
| 5309 | 84 |
| 7631 | 85 guint protocol_ver; |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
86 |
| 10481 | 87 MsnLoginStep login_step; /**< The current step in the login process. */ |
| 5309 | 88 |
| 89 gboolean connected; | |
| 10296 | 90 gboolean logged_in; /**< A temporal flag to ignore local buddy list adds. */ |
| 91 gboolean destroying; /**< A flag that states if the session is being destroyed. */ | |
| 10481 | 92 gboolean http_method; |
| 5309 | 93 |
|
9193
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
94 MsnNotification *notification; |
|
8171
d0ba2f7b40e7
[gaim-migrate @ 8884]
Christian Hammond <chipx86@chipx86.com>
parents:
7631
diff
changeset
|
95 MsnNexus *nexus; |
| 10481 | 96 MsnSync *sync; |
|
7288
ff9127038a5a
[gaim-migrate @ 7869]
Christian Hammond <chipx86@chipx86.com>
parents:
6701
diff
changeset
|
97 |
|
9193
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
98 MsnUserList *userlist; |
| 10044 | 99 MsnUserList *sync_userlist; |
| 5309 | 100 |
| 10403 | 101 int servconns_count; /**< The count of server connections. */ |
| 102 GList *switches; /**< The list of all the switchboards. */ | |
| 103 GList *directconns; /**< The list of all the directconnections. */ | |
| 10481 | 104 GList *slplinks; /**< The list of all the slplinks. */ |
| 5309 | 105 |
| 10481 | 106 int conv_seq; /**< The current conversation sequence number. */ |
| 5309 | 107 |
| 108 struct | |
| 109 { | |
| 110 char *kv; | |
| 111 char *sid; | |
| 112 char *mspauth; | |
| 113 unsigned long sl; | |
| 114 char *file; | |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
115 char *client_ip; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
116 int client_port; |
| 5309 | 117 |
| 118 } passport_info; | |
| 119 }; | |
| 120 | |
| 121 /** | |
| 122 * Creates an MSN session. | |
| 123 * | |
| 124 * @param account The account. | |
| 125 * | |
| 126 * @return The new MSN session. | |
| 127 */ | |
| 10481 | 128 MsnSession *msn_session_new(GaimAccount *account); |
| 5309 | 129 |
| 130 /** | |
| 131 * Destroys an MSN session. | |
| 132 * | |
| 133 * @param session The MSN session to destroy. | |
| 134 */ | |
| 135 void msn_session_destroy(MsnSession *session); | |
| 136 | |
| 137 /** | |
| 138 * Connects to and initiates an MSN session. | |
| 139 * | |
| 10481 | 140 * @param session The MSN session. |
| 141 * @param host The dispatch server host. | |
| 142 * @param port The dispatch server port. | |
| 143 * @param http_method Whether to use or not http_method. | |
| 5309 | 144 * |
| 145 * @return @c TRUE on success, @c FALSE on failure. | |
| 146 */ | |
| 10481 | 147 gboolean msn_session_connect(MsnSession *session, |
| 148 const char *host, int port, | |
| 149 gboolean http_method); | |
| 5309 | 150 |
| 151 /** | |
| 152 * Disconnects from an MSN session. | |
| 153 * | |
| 154 * @param session The MSN session. | |
| 155 */ | |
| 156 void msn_session_disconnect(MsnSession *session); | |
| 157 | |
| 158 /** | |
| 159 * Finds a switchboard with the given chat ID. | |
| 160 * | |
| 161 * @param session The MSN session. | |
| 162 * @param chat_id The chat ID to search for. | |
| 163 * | |
| 164 * @return The switchboard, if found. | |
| 165 */ | |
| 166 MsnSwitchBoard *msn_session_find_switch_with_id(const MsnSession *session, | |
| 167 int chat_id); | |
| 168 | |
|
9193
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
169 MsnSwitchBoard *msn_session_find_swboard(MsnSession *session, |
|
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
170 const char *username); |
|
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
171 MsnSwitchBoard *msn_session_get_swboard(MsnSession *session, |
|
502707ca1836
[gaim-migrate @ 9988]
Christian Hammond <chipx86@chipx86.com>
parents:
9158
diff
changeset
|
172 const char *username); |
| 5309 | 173 |
| 10481 | 174 /** |
| 175 * Sets an error for the MSN session. | |
| 176 * | |
| 177 * @param session The MSN session. | |
| 178 * @param error The error. | |
| 179 * @param info Extra information. | |
| 180 */ | |
| 181 void msn_session_set_error(MsnSession *session, MsnErrorType error, | |
| 182 const char *info); | |
| 183 | |
| 184 /** | |
| 185 * Sets the current step in the login proccess. | |
| 186 * | |
| 187 * @param session The MSN session. | |
| 188 * @param step The current step. | |
| 189 */ | |
| 190 void msn_session_set_login_step(MsnSession *session, MsnLoginStep step); | |
| 191 | |
| 192 /** | |
| 193 * Finish the login proccess. | |
| 194 * | |
| 195 * @param session The MSN session. | |
| 196 */ | |
| 10044 | 197 void msn_session_finish_login(MsnSession *session); |
| 198 | |
| 5309 | 199 #endif /* _MSN_SESSION_H_ */ |
