Mercurial > pidgin.yaz
annotate libpurple/protocols/myspace/session.h @ 23943:284c19091f8f
Added Irish translation from Aaron Kearns. This technically addes a string ("Irish"), but I'm going to do it anyway. Fixes #6836.
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Fri, 29 Aug 2008 19:37:07 +0000 |
parents | c0ad8b41ce09 |
children | fae699fece1f |
rev | line source |
---|---|
19892
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
1 /* MySpaceIM Protocol Plugin, session |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
2 * |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
3 * Copyright (C) 2007, Jeff Connelly <jeff2@soc.pidgin.im> |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
4 * |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
5 * This program is free software; you can redistribute it and/or modify |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
6 * it under the terms of the GNU General Public License as published by |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
7 * the Free Software Foundation; either version 2 of the License, or |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
8 * (at your option) any later version. |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
9 * |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
10 * This program is distributed in the hope that it will be useful, |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
13 * GNU General Public License for more details. |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
14 * |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
15 * You should have received a copy of the GNU General Public License |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
16 * along with this program; if not, write to the Free Software |
20147
51457cf3d27b
merge of '0fb234fbd6f0cbba882df8df649a783fea7f312f'
Casey Harkins <charkins@pidgin.im>
diff
changeset
|
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
19892
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
18 */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
19 |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
20 #ifndef _MYSPACE_SESSION_H |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
21 #define _MYSPACE_SESSION_H |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
22 |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
23 /* Random number in every MsimSession, to ensure it is valid. */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
24 #define MSIM_SESSION_STRUCT_MAGIC 0xe4a6752b |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
25 |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
26 /* Everything needed to keep track of a session (proto_data field in PurpleConnection) */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
27 typedef struct _MsimSession |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
28 { |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
29 guint magic; /**< MSIM_SESSION_STRUCT_MAGIC */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
30 PurpleAccount *account; |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
31 PurpleConnection *gc; |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
32 guint sesskey; /**< Session key from server */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
33 guint userid; /**< This user's numeric user ID */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
34 gchar *username; /**< This user's unique username */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
35 gint fd; /**< File descriptor to/from server */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
36 |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
37 /* TODO: Remove. */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
38 GHashTable *user_lookup_cb; /**< Username -> userid lookup callback */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
39 GHashTable *user_lookup_cb_data; /**< Username -> userid lookup callback data */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
40 |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
41 MsimMessage *server_info; /**< Parameters from server */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
42 |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
43 gchar *rxbuf; /**< Receive buffer */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
44 guint rxoff; /**< Receive buffer offset */ |
22162 | 45 guint rxsize; /**< Receive buffer size */ |
19892
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
46 guint next_rid; /**< Next request/response ID */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
47 time_t last_comm; /**< Time received last communication */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
48 guint inbox_status; /**< Bit field of inbox notifications */ |
21758
430827922828
Avoid checking for new message in the inbox when not actually connected.
Kevin Stange <kevin@simguy.net>
parents:
20147
diff
changeset
|
49 guint inbox_handle; /**< The handle for the mail check timer */ |
19892
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
50 } MsimSession; |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
51 |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
52 /* Check if an MsimSession is valid */ |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
53 #define MSIM_SESSION_VALID(s) (session != NULL && session->magic == MSIM_SESSION_STRUCT_MAGIC) |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
54 |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
55 |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
56 MsimSession *msim_session_new(PurpleAccount *acct); |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
57 void msim_session_destroy(MsimSession *session); |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
58 |
36ba89a2b7da
Replace all CRLF line-endings with LF line endings (Unix-style). This fixes
Jeffrey Connelly <jaconnel@calpoly.edu>
parents:
19435
diff
changeset
|
59 #endif /* !_MYSPACE_SESSION_H */ |