source: protocols/msn/msn.h @ 7b23afd

Last change on this file since 7b23afd was b7d3cc34, checked in by Wilmer van der Gaast <wilmer@…>, at 2005-11-06T18:23:18Z

Initial repository (0.99 release tree)

  • Property mode set to 100644
File size: 5.2 KB
Line 
1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2004 Wilmer van der Gaast and others                *
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
26/* Some hackish magicstrings to make special-purpose messages/switchboards.
27 */
28#define TYPING_NOTIFICATION_MESSAGE "\r\r\rBEWARE, ME R TYPINK MESSAGE!!!!\r\r\r"
29#define GROUPCHAT_SWITCHBOARD_MESSAGE "\r\r\rME WANT TALK TO MANY PEOPLE\r\r\r"
30
31#ifdef _WIN32
32#define debug
33#else
34#define debug( text... ) irc_usermsg( IRC, text );
35#undef debug
36#define debug( text... )
37#endif
38
39#define QRY_NAME "msmsgs@msnmsgr.com"
40#define QRY_CODE "Q1P7W2E4J9R8U3S5"
41
42#define MSN_SB_NEW         -24062002
43
44#define MSN_MESSAGE_HEADERS "MIME-Version: 1.0\r\n" \
45                            "Content-Type: text/plain; charset=UTF-8\r\n" \
46                            "User-Agent: BitlBee " BITLBEE_VERSION "\r\n" \
47                            "X-MMS-IM-Format: FN=MS%20Shell%20Dlg; EF=; CO=0; CS=0; PF=0\r\n" \
48                            "\r\n"
49
50#define MSN_TYPING_HEADERS "MIME-Version: 1.0\r\n" \
51                           "Content-Type: text/x-msmsgscontrol\r\n" \
52                           "TypingUser: %s\r\n" \
53                           "\r\n\r\n"
54
55#define PROFILE_URL "http://members.msn.com/"
56
57struct msn_data
58{
59        struct gaim_connection *gc;
60       
61        int fd;
62        struct msn_handler_data *handler;
63       
64        int trId;
65       
66        GSList *msgq;
67        GSList *switchboards;
68        int buddycount;
69        struct msn_away_state *away_state;
70};
71
72struct msn_switchboard
73{
74        struct gaim_connection *gc;
75       
76        int fd;
77        gint inp;
78        struct msn_handler_data *handler;
79       
80        int trId;
81        int ready;
82       
83        int session;
84        char *key;
85       
86        GSList *msgq;
87        char *who;
88        struct conversation *chat;
89};
90
91struct msn_away_state
92{
93        int number;
94        char code[4];
95        char name[16];
96};
97
98struct msn_status_code
99{
100        int number;
101        char *text;
102        int flags;
103};
104
105struct msn_message
106{
107        char *who;
108        char *text;
109};
110
111struct msn_handler_data
112{
113        int fd;
114        int rxlen;
115        char *rxq;
116       
117        int msglen;
118        char *cmd_text;
119       
120        gpointer data;
121       
122        int (*exec_command) ( gpointer data, char **cmd, int count );
123        int (*exec_message) ( gpointer data, char *msg, int msglen, char **cmd, int count );
124};
125
126/* Bitfield values for msn_status_code.flags */
127#define STATUS_FATAL            1
128#define STATUS_SB_FATAL         2
129
130int msn_chat_id;
131extern struct msn_away_state msn_away_state_list[];
132extern struct msn_status_code msn_status_code_list[];
133
134/* Keep a list of all the active connections. We need these lists because
135   "connected" callbacks might be called when the connection they belong too
136   is down already (for example, when an impatient user disabled the
137   connection), the callback should check whether it's still listed here
138   before doing *anything* else. */
139GSList *msn_connections;
140GSList *msn_switchboards;
141
142/* ns.c */
143void msn_ns_connected( gpointer data, gint source, GaimInputCondition cond );
144
145/* msn_util.c */
146int msn_write( struct gaim_connection *gc, char *s, int len );
147int msn_logged_in( struct gaim_connection *gc );
148int msn_buddy_list_add( struct gaim_connection *gc, char *list, char *who, char *realname );
149int msn_buddy_list_remove( struct gaim_connection *gc, char *list, char *who );
150void msn_buddy_ask( struct gaim_connection *gc, char *handle, char *realname );
151char *msn_findheader( char *text, char *header, int len );
152char **msn_linesplit( char *line );
153int msn_handler( struct msn_handler_data *h );
154
155/* tables.c */
156struct msn_away_state *msn_away_state_by_number( int number );
157struct msn_away_state *msn_away_state_by_code( char *code );
158struct msn_away_state *msn_away_state_by_name( char *name );
159struct msn_status_code *msn_status_by_number( int number );
160
161/* sb.c */
162int msn_sb_write( struct msn_switchboard *sb, char *s, int len );
163struct msn_switchboard *msn_sb_create( struct gaim_connection *gc, char *host, int port, char *key, int session );
164struct msn_switchboard *msn_sb_by_handle( struct gaim_connection *gc, char *handle );
165struct msn_switchboard *msn_sb_by_id( struct gaim_connection *gc, int id );
166struct msn_switchboard *msn_sb_spare( struct gaim_connection *gc );
167int msn_sb_sendmessage( struct msn_switchboard *sb, char *text );
168void msn_sb_to_chat( struct msn_switchboard *sb );
169void msn_sb_destroy( struct msn_switchboard *sb );
170void msn_sb_connected( gpointer data, gint source, GaimInputCondition cond );
Note: See TracBrowser for help on using the repository browser.