comparison libpurple/protocols/mxit/login.h @ 28903:69aa4660401a

Initial addition of the MXit protocol plugin, provided by the MXit folks themselves.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sun, 08 Nov 2009 23:55:56 +0000
parents
children
comparison
equal deleted inserted replaced
28901:13e668ef158d 28903:69aa4660401a
1 /*
2 * MXit Protocol libPurple Plugin
3 *
4 * -- MXit user login functionality --
5 *
6 * Pieter Loubser <libpurple@mxit.com>
7 *
8 * (C) Copyright 2009 MXit Lifestyle (Pty) Ltd.
9 * <http://www.mxitlifestyle.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
24 */
25
26 #ifndef _MXIT_LOGIN_H_
27 #define _MXIT_LOGIN_H_
28
29
30 struct login_data {
31 char* wapserver; /* direct WAP server for postback */
32 char* sessionid; /* unique session id */
33 guchar* captcha; /* actual captcha (PNG) */
34 gsize captcha_size; /* captcha size */
35 char* cc; /* country code */
36 char* locale; /* locale (language) */
37 };
38
39
40 void mxit_login( PurpleAccount* account );
41 void mxit_register( PurpleAccount* account );
42 void mxit_reconnect( struct MXitSession* session );
43
44
45 #endif /* _MXIT_LOGIN_H_ */