source: protocols/msn/msn.h @ 21029d0

Last change on this file since 21029d0 was 21029d0, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-03-20T13:56:27Z

Add MSNP11 challenge code which I'll need for doing this SOAP stuff.

  • Property mode set to 100644
File size: 5.9 KB
RevLine 
[b7d3cc34]1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
[21029d0]4  * Copyright 2002-2010 Wilmer van der Gaast and others                *
[b7d3cc34]5  \********************************************************************/
6
7/* MSN module                                                           */
8
9/*
10  This program is free software; you can redistribute it and/or modify
11  it under the terms of the GNU General Public License as published by
12  the Free Software Foundation; either version 2 of the License, or
13  (at your option) any later version.
14
15  This program is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  GNU General Public License for more details.
19
20  You should have received a copy of the GNU General Public License with
21  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
22  if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23  Suite 330, Boston, MA  02111-1307  USA
24*/
25
[a830512]26#ifndef _MSN_H
27#define _MSN_H
28
[b7d3cc34]29/* Some hackish magicstrings to make special-purpose messages/switchboards.
30 */
31#define TYPING_NOTIFICATION_MESSAGE "\r\r\rBEWARE, ME R TYPINK MESSAGE!!!!\r\r\r"
32#define GROUPCHAT_SWITCHBOARD_MESSAGE "\r\r\rME WANT TALK TO MANY PEOPLE\r\r\r"
33
[aa31117]34#ifdef DEBUG_MSN
[59f527b6]35#define debug( text... ) imcb_log( ic, text );
[b7d3cc34]36#else
37#define debug( text... )
38#endif
39
40#define QRY_NAME "msmsgs@msnmsgr.com"
41#define QRY_CODE "Q1P7W2E4J9R8U3S5"
42
[21029d0]43/* This should be MSN Messenger 7.0.0813 */
44#define MSNP11_PROD_KEY "CFHUR$52U_{VIX5T"
45#define MSNP11_PROD_ID  "PROD0101{0RM?UBW"
46
[b7d3cc34]47#define MSN_SB_NEW         -24062002
48
49#define MSN_MESSAGE_HEADERS "MIME-Version: 1.0\r\n" \
50                            "Content-Type: text/plain; charset=UTF-8\r\n" \
51                            "User-Agent: BitlBee " BITLBEE_VERSION "\r\n" \
52                            "X-MMS-IM-Format: FN=MS%20Shell%20Dlg; EF=; CO=0; CS=0; PF=0\r\n" \
53                            "\r\n"
54
55#define MSN_TYPING_HEADERS "MIME-Version: 1.0\r\n" \
56                           "Content-Type: text/x-msmsgscontrol\r\n" \
57                           "TypingUser: %s\r\n" \
58                           "\r\n\r\n"
59
60#define PROFILE_URL "http://members.msn.com/"
61
62struct msn_data
63{
[0da65d5]64        struct im_connection *ic;
[b7d3cc34]65       
66        int fd;
67        struct msn_handler_data *handler;
68       
69        int trId;
70       
71        GSList *msgq;
72        GSList *switchboards;
[59f527b6]73        int sb_failures;
74        time_t first_sb_failure;
[bc736cfa]75       
[59f527b6]76        const struct msn_away_state *away_state;
[bc736cfa]77        int buddycount;
78        int groupcount;
79        char **grouplist;
[b7d3cc34]80};
81
82struct msn_switchboard
83{
[0da65d5]84        struct im_connection *ic;
[b7d3cc34]85       
86        int fd;
87        gint inp;
88        struct msn_handler_data *handler;
89       
90        int trId;
91        int ready;
92       
93        int session;
94        char *key;
95       
96        GSList *msgq;
97        char *who;
[0da65d5]98        struct groupchat *chat;
[b7d3cc34]99};
100
101struct msn_away_state
102{
103        char code[4];
104        char name[16];
105};
106
107struct msn_status_code
108{
109        int number;
110        char *text;
111        int flags;
112};
113
114struct msn_message
115{
116        char *who;
117        char *text;
118};
119
120struct msn_handler_data
121{
122        int fd;
123        int rxlen;
124        char *rxq;
125       
126        int msglen;
127        char *cmd_text;
128       
129        gpointer data;
130       
131        int (*exec_command) ( gpointer data, char **cmd, int count );
132        int (*exec_message) ( gpointer data, char *msg, int msglen, char **cmd, int count );
133};
134
135/* Bitfield values for msn_status_code.flags */
136#define STATUS_FATAL            1
137#define STATUS_SB_FATAL         2
[3b9390b]138#define STATUS_SB_IM_SPARE      4       /* Make one-to-one conversation switchboard available again, invite failed. */
139#define STATUS_SB_CHAT_SPARE    8       /* Same, but also for groupchats (not used yet). */
[b7d3cc34]140
[c6ca3ee]141extern int msn_chat_id;
[0196c47]142extern const struct msn_away_state msn_away_state_list[];
143extern const struct msn_status_code msn_status_code_list[];
[b7d3cc34]144
145/* Keep a list of all the active connections. We need these lists because
146   "connected" callbacks might be called when the connection they belong too
147   is down already (for example, when an impatient user disabled the
148   connection), the callback should check whether it's still listed here
149   before doing *anything* else. */
[c6ca3ee]150extern GSList *msn_connections;
151extern GSList *msn_switchboards;
[b7d3cc34]152
153/* ns.c */
[ba9edaa]154gboolean msn_ns_connected( gpointer data, gint source, b_input_condition cond );
[b7d3cc34]155
156/* msn_util.c */
[0da65d5]157int msn_write( struct im_connection *ic, char *s, int len );
158int msn_logged_in( struct im_connection *ic );
159int msn_buddy_list_add( struct im_connection *ic, char *list, char *who, char *realname );
160int msn_buddy_list_remove( struct im_connection *ic, char *list, char *who );
161void msn_buddy_ask( struct im_connection *ic, char *handle, char *realname );
[b7d3cc34]162char *msn_findheader( char *text, char *header, int len );
163char **msn_linesplit( char *line );
164int msn_handler( struct msn_handler_data *h );
[54794b8]165char *msn_http_encode( const char *input );
[46dca11]166void msn_msgq_purge( struct im_connection *ic, GSList **list );
[21029d0]167char *msn_p11_challenge( char *challenge );
[b7d3cc34]168
169/* tables.c */
[0196c47]170const struct msn_away_state *msn_away_state_by_number( int number );
171const struct msn_away_state *msn_away_state_by_code( char *code );
172const struct msn_away_state *msn_away_state_by_name( char *name );
173const struct msn_status_code *msn_status_by_number( int number );
[b7d3cc34]174
175/* sb.c */
176int msn_sb_write( struct msn_switchboard *sb, char *s, int len );
[0da65d5]177struct msn_switchboard *msn_sb_create( struct im_connection *ic, char *host, int port, char *key, int session );
178struct msn_switchboard *msn_sb_by_handle( struct im_connection *ic, char *handle );
179struct msn_switchboard *msn_sb_by_chat( struct groupchat *c );
180struct msn_switchboard *msn_sb_spare( struct im_connection *ic );
[b7d3cc34]181int msn_sb_sendmessage( struct msn_switchboard *sb, char *text );
[0da65d5]182struct groupchat *msn_sb_to_chat( struct msn_switchboard *sb );
[b7d3cc34]183void msn_sb_destroy( struct msn_switchboard *sb );
[ba9edaa]184gboolean msn_sb_connected( gpointer data, gint source, b_input_condition cond );
[a830512]185int msn_sb_write_msg( struct im_connection *ic, struct msn_message *m );
186
187#endif //_MSN_H
Note: See TracBrowser for help on using the repository browser.