Mercurial > pidgin
annotate src/protocols/msn/session.h @ 6965:d4b4229bcd21
[gaim-migrate @ 7512]
fix sort by log size and sort by status, and allow dragging of entire contacts
into expanded contacts, like one would expect
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Thu, 25 Sep 2003 03:30:07 +0000 |
| parents | b7e113a59b51 |
| children | ff9127038a5a |
| rev | line source |
|---|---|
| 5309 | 1 /** |
| 2 * @file session.h MSN session functions | |
| 3 * | |
| 4 * gaim | |
| 5 * | |
| 6 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org> | |
|
6701
b7e113a59b51
[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 | |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
27 #include "sslconn.h" |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
28 |
| 5309 | 29 #include "servconn.h" |
| 30 #include "switchboard.h" | |
| 31 #include "user.h" | |
|
5518
bf2a7a7b739d
[gaim-migrate @ 5918]
Christian Hammond <chipx86@chipx86.com>
parents:
5456
diff
changeset
|
32 #include "group.h" |
| 5309 | 33 |
| 34 struct _MsnSession | |
| 35 { | |
|
5564
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5518
diff
changeset
|
36 GaimAccount *account; |
|
5363
ebebc833cf77
[gaim-migrate @ 5739]
Christian Hammond <chipx86@chipx86.com>
parents:
5327
diff
changeset
|
37 MsnUser *user; |
| 5309 | 38 |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
39 int protocol_ver; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
40 |
| 5309 | 41 char *dispatch_server; |
| 42 int dispatch_port; | |
| 43 | |
| 44 gboolean connected; | |
| 45 | |
| 46 MsnServConn *dispatch_conn; | |
| 47 MsnServConn *notification_conn; | |
| 48 | |
| 49 unsigned int trId; | |
| 50 | |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
51 char *ssl_url; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
52 char *ssl_login_host; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
53 char *ssl_login_path; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
54 char *ssl_login_params; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
55 GHashTable *ssl_challenge_data; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
56 GaimSslConnection *ssl_conn; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
57 |
| 5309 | 58 MsnUsers *users; |
|
5518
bf2a7a7b739d
[gaim-migrate @ 5918]
Christian Hammond <chipx86@chipx86.com>
parents:
5456
diff
changeset
|
59 MsnGroups *groups; |
| 5309 | 60 |
|
5898
5baeb89ee2d4
[gaim-migrate @ 6330]
Christian Hammond <chipx86@chipx86.com>
parents:
5564
diff
changeset
|
61 GList *servconns; |
| 5309 | 62 GList *switches; |
| 63 | |
| 64 struct | |
| 65 { | |
| 66 GSList *forward; | |
| 67 GSList *reverse; | |
| 68 GSList *allow; | |
| 69 GSList *block; | |
| 70 | |
| 71 } lists; | |
| 72 | |
| 73 struct | |
| 74 { | |
| 75 char *kv; | |
| 76 char *sid; | |
| 77 char *mspauth; | |
| 78 unsigned long sl; | |
| 79 char *file; | |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
80 char *client_ip; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
81 int client_port; |
| 5309 | 82 |
| 83 } passport_info; | |
| 84 | |
|
5322
a4d017bee1de
[gaim-migrate @ 5694]
Christian Hammond <chipx86@chipx86.com>
parents:
5318
diff
changeset
|
85 /* You have no idea how much I hate all that is below. */ |
| 5309 | 86 GaimPlugin *prpl; |
|
5322
a4d017bee1de
[gaim-migrate @ 5694]
Christian Hammond <chipx86@chipx86.com>
parents:
5318
diff
changeset
|
87 |
|
6701
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
88 /* For MSNP8 and MSNP9. */ |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
89 int num_users; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
90 int total_users; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
91 int num_groups; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
92 int total_groups; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
93 MsnUser *last_user_added; |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
94 |
|
b7e113a59b51
[gaim-migrate @ 7227]
Christian Hammond <chipx86@chipx86.com>
parents:
5898
diff
changeset
|
95 /* For MSNP7 and lower. */ |
|
5456
40e976d42028
[gaim-migrate @ 5844]
Christian Hammond <chipx86@chipx86.com>
parents:
5406
diff
changeset
|
96 gboolean syncing_lists; |
|
5406
9acf4832c0dc
[gaim-migrate @ 5782]
Christian Hammond <chipx86@chipx86.com>
parents:
5363
diff
changeset
|
97 gboolean lists_synced; |
|
9acf4832c0dc
[gaim-migrate @ 5782]
Christian Hammond <chipx86@chipx86.com>
parents:
5363
diff
changeset
|
98 |
|
5322
a4d017bee1de
[gaim-migrate @ 5694]
Christian Hammond <chipx86@chipx86.com>
parents:
5318
diff
changeset
|
99 /* For moving buddies from one group to another. Ugh. */ |
|
a4d017bee1de
[gaim-migrate @ 5694]
Christian Hammond <chipx86@chipx86.com>
parents:
5318
diff
changeset
|
100 gboolean moving_buddy; |
|
5327
b716ffc25d2d
[gaim-migrate @ 5700]
Christian Hammond <chipx86@chipx86.com>
parents:
5322
diff
changeset
|
101 char *dest_group_name; |
|
5518
bf2a7a7b739d
[gaim-migrate @ 5918]
Christian Hammond <chipx86@chipx86.com>
parents:
5456
diff
changeset
|
102 MsnUser *moving_user; |
|
bf2a7a7b739d
[gaim-migrate @ 5918]
Christian Hammond <chipx86@chipx86.com>
parents:
5456
diff
changeset
|
103 MsnGroup *old_group; |
| 5309 | 104 }; |
| 105 | |
| 106 /** | |
| 107 * Creates an MSN session. | |
| 108 * | |
| 109 * @param account The account. | |
| 110 * @param server The dispatch server. | |
| 111 * @param port The dispatch port. | |
| 112 * | |
| 113 * @return The new MSN session. | |
| 114 */ | |
|
5564
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5518
diff
changeset
|
115 MsnSession *msn_session_new(GaimAccount *account, |
| 5309 | 116 const char *server, int port); |
| 117 | |
| 118 /** | |
| 119 * Destroys an MSN session. | |
| 120 * | |
| 121 * @param session The MSN session to destroy. | |
| 122 */ | |
| 123 void msn_session_destroy(MsnSession *session); | |
| 124 | |
| 125 /** | |
| 126 * Connects to and initiates an MSN session. | |
| 127 * | |
| 128 * @param session The MSN session. | |
| 129 * | |
| 130 * @return @c TRUE on success, @c FALSE on failure. | |
| 131 */ | |
| 132 gboolean msn_session_connect(MsnSession *session); | |
| 133 | |
| 134 /** | |
| 135 * Disconnects from an MSN session. | |
| 136 * | |
| 137 * @param session The MSN session. | |
| 138 */ | |
| 139 void msn_session_disconnect(MsnSession *session); | |
| 140 | |
| 141 /** | |
| 142 * Opens a new switchboard connection. | |
| 143 * | |
| 144 * @param session The MSN session. | |
| 145 * | |
| 146 * @return The new switchboard connection. | |
| 147 */ | |
| 148 MsnSwitchBoard *msn_session_open_switchboard(MsnSession *session); | |
| 149 | |
| 150 /** | |
| 151 * Finds a switch with the given passport. | |
| 152 * | |
| 153 * @param session The MSN session. | |
| 154 * @param passport The passport to search for. | |
| 155 * | |
| 156 * @return The switchboard, if found. | |
| 157 */ | |
| 158 MsnSwitchBoard *msn_session_find_switch_with_passport( | |
| 159 const MsnSession *session, const char *passport); | |
| 160 | |
| 161 /** | |
| 162 * Finds a switchboard with the given chat ID. | |
| 163 * | |
| 164 * @param session The MSN session. | |
| 165 * @param chat_id The chat ID to search for. | |
| 166 * | |
| 167 * @return The switchboard, if found. | |
| 168 */ | |
| 169 MsnSwitchBoard *msn_session_find_switch_with_id(const MsnSession *session, | |
| 170 int chat_id); | |
| 171 | |
| 172 /** | |
| 173 * Finds the first unused switchboard. | |
| 174 * | |
| 175 * @param session The MSN session. | |
| 176 * | |
| 177 * @return The first unused, writable switchboard, if found. | |
| 178 */ | |
| 179 MsnSwitchBoard *msn_session_find_unused_switch(const MsnSession *session); | |
| 180 | |
| 181 #endif /* _MSN_SESSION_H_ */ |
