|
Evan@653
|
1 |
/** |
|
Evan@653
|
2 |
* @file notification.h Notification server functions |
|
Evan@653
|
3 |
* |
|
Evan@653
|
4 |
* purple |
|
Evan@653
|
5 |
* |
|
Evan@653
|
6 |
* Purple is the legal property of its developers, whose names are too numerous |
|
Evan@653
|
7 |
* to list here. Please refer to the COPYRIGHT file distributed with this |
|
Evan@653
|
8 |
* source distribution. |
|
Evan@653
|
9 |
* |
|
Evan@653
|
10 |
* This program is free software; you can redistribute it and/or modify |
|
Evan@653
|
11 |
* it under the terms of the GNU General Public License as published by |
|
Evan@653
|
12 |
* the Free Software Foundation; either version 2 of the License, or |
|
Evan@653
|
13 |
* (at your option) any later version. |
|
Evan@653
|
14 |
* |
|
Evan@653
|
15 |
* This program is distributed in the hope that it will be useful, |
|
Evan@653
|
16 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
Evan@653
|
17 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
Evan@653
|
18 |
* GNU General Public License for more details. |
|
Evan@653
|
19 |
* |
|
Evan@653
|
20 |
* You should have received a copy of the GNU General Public License |
|
Evan@653
|
21 |
* along with this program; if not, write to the Free Software |
|
Evan@653
|
22 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
|
Evan@653
|
23 |
*/ |
|
Evan@653
|
24 |
#ifndef _MSN_NOTIFICATION_H_ |
|
Evan@653
|
25 |
#define _MSN_NOTIFICATION_H_ |
|
Evan@653
|
26 |
|
|
Evan@653
|
27 |
/*MSN protocol challenge info*/ |
|
Evan@653
|
28 |
|
|
Evan@653
|
29 |
/*MSNP15 challenge: WLM 8.5.1288.816*/ |
|
Evan@653
|
30 |
#define MSNP15_WLM_PRODUCT_KEY "ILTXC!4IXB5FB*PX" |
|
Evan@653
|
31 |
#define MSNP15_WLM_PRODUCT_ID "PROD0119GSJUC$18" |
|
Evan@653
|
32 |
|
|
Evan@653
|
33 |
/*MSNP13 challenge*/ |
|
Evan@653
|
34 |
#define MSNP13_WLM_PRODUCT_KEY "O4BG@C7BWLYQX?5G" |
|
Evan@653
|
35 |
#define MSNP13_WLM_PRODUCT_ID "PROD01065C%ZFN6F" |
|
Evan@653
|
36 |
|
|
Evan@653
|
37 |
#define MSNP10_PRODUCT_KEY "VT6PX?UQTM4WM%YR" |
|
Evan@653
|
38 |
#define MSNP10_PRODUCT_ID "PROD0038W!61ZTF9" |
|
Evan@653
|
39 |
|
|
Evan@653
|
40 |
typedef struct _MsnNotification MsnNotification; |
|
Evan@653
|
41 |
|
|
Evan@653
|
42 |
#include "session.h" |
|
Evan@653
|
43 |
#include "servconn.h" |
|
Evan@653
|
44 |
#include "cmdproc.h" |
|
Evan@653
|
45 |
#include "user.h" |
|
Evan@653
|
46 |
|
|
Evan@653
|
47 |
struct _MsnNotification |
|
Evan@653
|
48 |
{ |
|
Evan@653
|
49 |
MsnSession *session; |
|
Evan@653
|
50 |
|
|
Evan@653
|
51 |
/** |
|
Evan@653
|
52 |
* This is a convenience pointer that always points to |
|
Evan@653
|
53 |
* servconn->cmdproc |
|
Evan@653
|
54 |
*/ |
|
Evan@653
|
55 |
MsnCmdProc *cmdproc; |
|
Evan@653
|
56 |
MsnServConn *servconn; |
|
Evan@653
|
57 |
|
|
Evan@653
|
58 |
gboolean in_use; |
|
Evan@653
|
59 |
}; |
|
Evan@653
|
60 |
|
|
zacw@2489
|
61 |
typedef void (*MsnFqyCb)(MsnSession *session, const char *passport, MsnNetwork network, gpointer data); |
|
Evan@1427
|
62 |
|
|
Evan@653
|
63 |
#include "state.h" |
|
Evan@653
|
64 |
void uum_send_msg(MsnSession *session,MsnMessage *msg); |
|
Evan@653
|
65 |
|
|
Evan@653
|
66 |
void msn_notification_end(void); |
|
Evan@653
|
67 |
void msn_notification_init(void); |
|
Evan@653
|
68 |
|
|
Evan@653
|
69 |
void msn_notification_add_buddy_to_list(MsnNotification *notification, |
|
Evan@653
|
70 |
MsnListId list_id, MsnUser *user); |
|
Evan@653
|
71 |
void msn_notification_rem_buddy_from_list(MsnNotification *notification, |
|
Evan@653
|
72 |
MsnListId list_id, MsnUser *user); |
|
Evan@653
|
73 |
|
|
Evan@1427
|
74 |
void msn_notification_send_fqy(MsnSession *session, |
|
Evan@1427
|
75 |
const char *payload, int payload_len, |
|
zacw@2489
|
76 |
MsnFqyCb cb, gpointer cb_data); |
|
Evan@653
|
77 |
|
|
Evan@653
|
78 |
MsnNotification *msn_notification_new(MsnSession *session); |
|
Evan@653
|
79 |
void msn_notification_destroy(MsnNotification *notification); |
|
Evan@653
|
80 |
gboolean msn_notification_connect(MsnNotification *notification, |
|
Evan@653
|
81 |
const char *host, int port); |
|
Evan@653
|
82 |
void msn_notification_disconnect(MsnNotification *notification); |
|
Evan@653
|
83 |
void msn_notification_dump_contact(MsnSession *session); |
|
Evan@653
|
84 |
|
|
Evan@653
|
85 |
/** |
|
Evan@653
|
86 |
* Closes a notification. |
|
Evan@653
|
87 |
* |
|
Evan@653
|
88 |
* It's first closed, and then disconnected. |
|
Evan@653
|
89 |
* |
|
Evan@653
|
90 |
* @param notification The notification object to close. |
|
Evan@653
|
91 |
*/ |
|
Evan@653
|
92 |
void msn_notification_close(MsnNotification *notification); |
|
Evan@653
|
93 |
|
|
Evan@653
|
94 |
void msn_got_login_params(MsnSession *session, const char *ticket, const char *response); |
|
Evan@653
|
95 |
|
|
Evan@653
|
96 |
#endif /* _MSN_NOTIFICATION_H_ */ |