source: protocols/msn/msn.h @ ae3dc99

Last change on this file since ae3dc99 was ae3dc99, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-04-24T17:02:07Z

Merging stuff from mainline (1.2.6).

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