Mon, 05 Apr 2004 07:11:24 +0000
[gaim-migrate @ 9333]
Added Felipe Contreras's patch to reorganize and clean up the MSN
protocol plugin. Thanks, and once again, apologies for the what must have
seemed a never-ending delay.
committer: Christian Hammond <chipx86@chipx86.com>
| 5309 | 1 | /** |
| 2 | * @file session.h MSN session functions | |
| 3 | * | |
| 4 | * gaim | |
| 5 | * | |
|
8475
3b5687726055
[gaim-migrate @ 9208]
Christian Hammond <chipx86@chipx86.com>
parents:
8298
diff
changeset
|
6 | * Copyright (C) 2003-2004 Christian Hammond <chipx86@gnupdate.org> |
|
6701
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
7 | * |
| 5309 | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by | |
| 10 | * the Free Software Foundation; either version 2 of the License, or | |
| 11 | * (at your option) any later version. | |
| 12 | * | |
| 13 | * This program is distributed in the hope that it will be useful, | |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 | * GNU General Public License for more details. | |
| 17 | * | |
| 18 | * You should have received a copy of the GNU General Public License | |
| 19 | * along with this program; if not, write to the Free Software | |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 21 | */ | |
| 22 | #ifndef _MSN_SESSION_H_ | |
| 23 | #define _MSN_SESSION_H_ | |
| 24 | ||
| 25 | typedef struct _MsnSession MsnSession; | |
| 26 | ||
|
8171
c3c43a25caec
[gaim-migrate @ 8884]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
7631
diff
changeset
|
27 | #include "group.h" |
|
c3c43a25caec
[gaim-migrate @ 8884]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
7631
diff
changeset
|
28 | #include "nexus.h" |
|
c3c43a25caec
[gaim-migrate @ 8884]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
7631
diff
changeset
|
29 | #include "servconn.h" |
|
6701
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
30 | #include "sslconn.h" |
| 5309 | 31 | #include "switchboard.h" |
| 32 | #include "user.h" | |
|
8171
c3c43a25caec
[gaim-migrate @ 8884]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
7631
diff
changeset
|
33 | |
| 5309 | 34 | |
| 35 | struct _MsnSession | |
| 36 | { | |
|
5564
1779a1bfbdb8
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5518
diff
changeset
|
37 | GaimAccount *account; |
|
5363
b6e28be0c9bd
[gaim-migrate @ 5739]
Christian Hammond <chipx86@chipx86.com>
parents:
5327
diff
changeset
|
38 | MsnUser *user; |
|
7590
54b26062c7e0
[gaim-migrate @ 8208]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
39 | char *away_state; |
| 5309 | 40 | |
| 7631 | 41 | guint protocol_ver; |
|
6701
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
42 | |
| 5309 | 43 | char *dispatch_server; |
| 44 | int dispatch_port; | |
| 45 | ||
| 46 | gboolean connected; | |
| 47 | ||
| 48 | MsnServConn *notification_conn; | |
| 49 | ||
|
8171
c3c43a25caec
[gaim-migrate @ 8884]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
7631
diff
changeset
|
50 | MsnNexus *nexus; |
|
c3c43a25caec
[gaim-migrate @ 8884]
Felipe Contreras <felipe.contreras@gmail.com>
parents:
7631
diff
changeset
|
51 | |
| 5309 | 52 | unsigned int trId; |
| 53 | ||
|
7288
486e8b44a14b
[gaim-migrate @ 7869]
Christian Hammond <chipx86@chipx86.com>
parents:
6701
diff
changeset
|
54 | gboolean http_method; |
|
8298
eb6f1096ffa6
[gaim-migrate @ 9022]
Christian Hammond <chipx86@chipx86.com>
parents:
8171
diff
changeset
|
55 | gint http_poll_timer; |
|
7288
486e8b44a14b
[gaim-migrate @ 7869]
Christian Hammond <chipx86@chipx86.com>
parents:
6701
diff
changeset
|
56 | |
| 5309 | 57 | MsnUsers *users; |
|
5518
436fb9490b62
[gaim-migrate @ 5918]
Christian Hammond <chipx86@chipx86.com>
parents:
5456
diff
changeset
|
58 | MsnGroups *groups; |
| 5309 | 59 | |
|
5898
77c591517706
[gaim-migrate @ 6330]
Christian Hammond <chipx86@chipx86.com>
parents:
5564
diff
changeset
|
60 | GList *servconns; |
| 5309 | 61 | GList *switches; |
| 62 | ||
| 63 | struct | |
| 64 | { | |
| 65 | GSList *forward; | |
| 66 | GSList *reverse; | |
| 67 | GSList *allow; | |
| 68 | GSList *block; | |
| 69 | ||
| 70 | } lists; | |
| 71 | ||
| 72 | struct | |
| 73 | { | |
| 74 | char *kv; | |
| 75 | char *sid; | |
| 76 | char *mspauth; | |
| 77 | unsigned long sl; | |
| 78 | char *file; | |
|
6701
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
79 | char *client_ip; |
|
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
80 | int client_port; |
| 5309 | 81 | |
| 82 | } passport_info; | |
| 83 | ||
|
5322
782746a9bfdd
[gaim-migrate @ 5694]
Christian Hammond <chipx86@chipx86.com>
parents:
5318
diff
changeset
|
84 | /* You have no idea how much I hate all that is below. */ |
| 5309 | 85 | GaimPlugin *prpl; |
|
5322
782746a9bfdd
[gaim-migrate @ 5694]
Christian Hammond <chipx86@chipx86.com>
parents:
5318
diff
changeset
|
86 | |
|
6701
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
87 | /* For MSNP8 and MSNP9. */ |
|
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
88 | int num_users; |
|
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
89 | int total_users; |
|
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
90 | int num_groups; |
|
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
91 | int total_groups; |
|
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
92 | MsnUser *last_user_added; |
|
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
93 | |
|
7e2db9273748
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
94 | /* For MSNP7 and lower. */ |
|
5456
ff4eb9f08890
[gaim-migrate @ 5844]
Christian Hammond <chipx86@chipx86.com>
parents:
5406
diff
changeset
|
95 | gboolean syncing_lists; |
|
5406
001d8ddda70b
[gaim-migrate @ 5782]
Christian Hammond <chipx86@chipx86.com>
parents:
5363
diff
changeset
|
96 | gboolean lists_synced; |
|
001d8ddda70b
[gaim-migrate @ 5782]
Christian Hammond <chipx86@chipx86.com>
parents:
5363
diff
changeset
|
97 | |
|
5322
782746a9bfdd
[gaim-migrate @ 5694]
Christian Hammond <chipx86@chipx86.com>
parents:
5318
diff
changeset
|
98 | /* For moving buddies from one group to another. Ugh. */ |
|
782746a9bfdd
[gaim-migrate @ 5694]
Christian Hammond <chipx86@chipx86.com>
parents:
5318
diff
changeset
|
99 | gboolean moving_buddy; |
|
5327
c12297f29f8d
[gaim-migrate @ 5700]
Christian Hammond <chipx86@chipx86.com>
parents:
5322
diff
changeset
|
100 | char *dest_group_name; |
|
5518
436fb9490b62
[gaim-migrate @ 5918]
Christian Hammond <chipx86@chipx86.com>
parents:
5456
diff
changeset
|
101 | MsnUser *moving_user; |
|
436fb9490b62
[gaim-migrate @ 5918]
Christian Hammond <chipx86@chipx86.com>
parents:
5456
diff
changeset
|
102 | MsnGroup *old_group; |
| 8499 | 103 | |
| 104 | /* The last chat ID. */ | |
| 105 | int last_chat_id; | |
| 5309 | 106 | }; |
| 107 | ||
| 108 | /** | |
| 109 | * Creates an MSN session. | |
| 110 | * | |
| 111 | * @param account The account. | |
| 112 | * @param server The dispatch server. | |
| 113 | * @param port The dispatch port. | |
| 114 | * | |
| 115 | * @return The new MSN session. | |
| 116 | */ | |
|
5564
1779a1bfbdb8
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5518
diff
changeset
|
117 | MsnSession *msn_session_new(GaimAccount *account, |
| 5309 | 118 | const char *server, int port); |
| 119 | ||
| 120 | /** | |
| 121 | * Destroys an MSN session. | |
| 122 | * | |
| 123 | * @param session The MSN session to destroy. | |
| 124 | */ | |
| 125 | void msn_session_destroy(MsnSession *session); | |
| 126 | ||
| 127 | /** | |
| 128 | * Connects to and initiates an MSN session. | |
| 129 | * | |
| 130 | * @param session The MSN session. | |
| 131 | * | |
| 132 | * @return @c TRUE on success, @c FALSE on failure. | |
| 133 | */ | |
| 134 | gboolean msn_session_connect(MsnSession *session); | |
| 135 | ||
| 136 | /** | |
| 137 | * Disconnects from an MSN session. | |
| 138 | * | |
| 139 | * @param session The MSN session. | |
| 140 | */ | |
| 141 | void msn_session_disconnect(MsnSession *session); | |
| 142 | ||
| 143 | /** | |
| 144 | * Opens a new switchboard connection. | |
| 145 | * | |
| 146 | * @param session The MSN session. | |
| 147 | * | |
| 148 | * @return The new switchboard connection. | |
| 149 | */ | |
| 150 | MsnSwitchBoard *msn_session_open_switchboard(MsnSession *session); | |
| 151 | ||
| 152 | /** | |
|
7590
54b26062c7e0
[gaim-migrate @ 8208]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
153 | * Changes the status of the user. |
|
54b26062c7e0
[gaim-migrate @ 8208]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
154 | * |
|
54b26062c7e0
[gaim-migrate @ 8208]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
155 | * @param session The MSN session. |
|
54b26062c7e0
[gaim-migrate @ 8208]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
156 | * @param state The new state. |
|
54b26062c7e0
[gaim-migrate @ 8208]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
157 | */ |
|
54b26062c7e0
[gaim-migrate @ 8208]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
158 | gboolean msn_session_change_status(MsnSession *session, const char *state); |
|
54b26062c7e0
[gaim-migrate @ 8208]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
159 | |
|
54b26062c7e0
[gaim-migrate @ 8208]
Christian Hammond <chipx86@chipx86.com>
parents:
7288
diff
changeset
|
160 | /** |
| 5309 | 161 | * Finds a switch with the given passport. |
| 162 | * | |
| 163 | * @param session The MSN session. | |
| 164 | * @param passport The passport to search for. | |
| 165 | * | |
| 166 | * @return The switchboard, if found. | |
| 167 | */ | |
| 168 | MsnSwitchBoard *msn_session_find_switch_with_passport( | |
| 169 | const MsnSession *session, const char *passport); | |
| 170 | ||
| 171 | /** | |
| 172 | * Finds a switchboard with the given chat ID. | |
| 173 | * | |
| 174 | * @param session The MSN session. | |
| 175 | * @param chat_id The chat ID to search for. | |
| 176 | * | |
| 177 | * @return The switchboard, if found. | |
| 178 | */ | |
| 179 | MsnSwitchBoard *msn_session_find_switch_with_id(const MsnSession *session, | |
| 180 | int chat_id); | |
| 181 | ||
| 182 | /** | |
| 183 | * Finds the first unused switchboard. | |
| 184 | * | |
| 185 | * @param session The MSN session. | |
| 186 | * | |
| 187 | * @return The first unused, writable switchboard, if found. | |
| 188 | */ | |
| 189 | MsnSwitchBoard *msn_session_find_unused_switch(const MsnSession *session); | |
| 190 | ||
| 191 | #endif /* _MSN_SESSION_H_ */ |