source: protocols/msn/msn.h @ a2b99ec

Last change on this file since a2b99ec was a2b99ec, checked in by ulim <a.sporto+bee@…>, at 2008-08-10T22:17:58Z

Added MSN file transfer of type MSNFTP.

Transfer is direct and the sender can not be firewalled.

  • Property mode set to 100644
File size: 5.8 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#ifndef _MSN_H
27#define _MSN_H
28
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
34#ifdef DEBUG_MSN
35#define debug( text... ) imcb_log( ic, text );
36#else
37#define debug( text... )
38#endif
39
40#define QRY_NAME "msmsgs@msnmsgr.com"
41#define QRY_CODE "Q1P7W2E4J9R8U3S5"
42
43#define MSN_SB_NEW         -24062002
44
45#define MSN_MESSAGE_HEADERS "MIME-Version: 1.0\r\n" \
46                            "Content-Type: text/plain; charset=UTF-8\r\n" \
47                            "User-Agent: BitlBee " BITLBEE_VERSION "\r\n" \
48                            "X-MMS-IM-Format: FN=MS%20Shell%20Dlg; EF=; CO=0; CS=0; PF=0\r\n" \
49                            "\r\n"
50
51#define MSN_TYPING_HEADERS "MIME-Version: 1.0\r\n" \
52                           "Content-Type: text/x-msmsgscontrol\r\n" \
53                           "TypingUser: %s\r\n" \
54                           "\r\n\r\n"
55
56#define PROFILE_URL "http://members.msn.com/"
57
58struct msn_data
59{
60        struct im_connection *ic;
61       
62        int fd;
63        struct msn_handler_data *handler;
64       
65        int trId;
66       
67        GSList *msgq;
68        GSList *switchboards;
69        int sb_failures;
70        time_t first_sb_failure;
71        GSList *filetransfers;
72       
73        const struct msn_away_state *away_state;
74        int buddycount;
75        int groupcount;
76        char **grouplist;
77};
78
79struct msn_switchboard
80{
81        struct im_connection *ic;
82       
83        int fd;
84        gint inp;
85        struct msn_handler_data *handler;
86       
87        int trId;
88        int ready;
89       
90        int session;
91        char *key;
92       
93        GSList *msgq;
94        char *who;
95        struct groupchat *chat;
96};
97
98struct msn_away_state
99{
100        int number;
101        char code[4];
102        char name[16];
103};
104
105struct msn_status_code
106{
107        int number;
108        char *text;
109        int flags;
110};
111
112struct msn_message
113{
114        char *who;
115        char *text;
116};
117
118struct msn_handler_data
119{
120        int fd;
121        int rxlen;
122        char *rxq;
123       
124        int msglen;
125        char *cmd_text;
126       
127        gpointer data;
128       
129        int (*exec_command) ( gpointer data, char **cmd, int count );
130        int (*exec_message) ( gpointer data, char *msg, int msglen, char **cmd, int count );
131};
132
133/* Bitfield values for msn_status_code.flags */
134#define STATUS_FATAL            1
135#define STATUS_SB_FATAL         2
136#define STATUS_SB_IM_SPARE      4       /* Make one-to-one conversation switchboard available again, invite failed. */
137#define STATUS_SB_CHAT_SPARE    8       /* Same, but also for groupchats (not used yet). */
138
139int msn_chat_id;
140extern const struct msn_away_state msn_away_state_list[];
141extern const struct msn_status_code msn_status_code_list[];
142
143/* Keep a list of all the active connections. We need these lists because
144   "connected" callbacks might be called when the connection they belong too
145   is down already (for example, when an impatient user disabled the
146   connection), the callback should check whether it's still listed here
147   before doing *anything* else. */
148GSList *msn_connections;
149GSList *msn_switchboards;
150
151/* ns.c */
152gboolean msn_ns_connected( gpointer data, gint source, b_input_condition cond );
153
154/* msn_util.c */
155int msn_write( struct im_connection *ic, char *s, int len );
156int msn_logged_in( struct im_connection *ic );
157int msn_buddy_list_add( struct im_connection *ic, char *list, char *who, char *realname );
158int msn_buddy_list_remove( struct im_connection *ic, char *list, char *who );
159void msn_buddy_ask( struct im_connection *ic, char *handle, char *realname );
160char *msn_findheader( char *text, char *header, int len );
161char **msn_linesplit( char *line );
162int msn_handler( struct msn_handler_data *h );
163char *msn_http_encode( const char *input );
164void msn_msgq_purge( struct im_connection *ic, GSList **list );
165
166/* tables.c */
167const struct msn_away_state *msn_away_state_by_number( int number );
168const struct msn_away_state *msn_away_state_by_code( char *code );
169const struct msn_away_state *msn_away_state_by_name( char *name );
170const struct msn_status_code *msn_status_by_number( int number );
171
172/* sb.c */
173int msn_sb_write( struct msn_switchboard *sb, char *s, int len );
174struct msn_switchboard *msn_sb_create( struct im_connection *ic, char *host, int port, char *key, int session );
175struct msn_switchboard *msn_sb_by_handle( struct im_connection *ic, char *handle );
176struct msn_switchboard *msn_sb_by_chat( struct groupchat *c );
177struct msn_switchboard *msn_sb_spare( struct im_connection *ic );
178int msn_sb_sendmessage( struct msn_switchboard *sb, char *text );
179struct groupchat *msn_sb_to_chat( struct msn_switchboard *sb );
180void msn_sb_destroy( struct msn_switchboard *sb );
181gboolean msn_sb_connected( gpointer data, gint source, b_input_condition cond );
182int msn_sb_write_msg( struct im_connection *ic, struct msn_message *m );
183
184/* invitation.c */
185void msn_ftp_transfer_request( struct im_connection *ic, file_transfer_t *ft, char *who );
186
187#endif //_MSN_H
Note: See TracBrowser for help on using the repository browser.