source: protocols/msn/msn.h @ 823de9d

Last change on this file since 823de9d was 823de9d, checked in by Sven Moritz Hallberg <pesco@…>, at 2009-03-12T19:10:06Z

commit updates by ashish shukla <wahjava@…>

  • Property mode set to 100644
File size: 5.7 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       
72        const struct msn_away_state *away_state;
73        int buddycount;
74        int groupcount;
75        char **grouplist;
76};
77
78struct msn_switchboard
79{
80        struct im_connection *ic;
81       
82        int fd;
83        gint inp;
84        struct msn_handler_data *handler;
85       
86        int trId;
87        int ready;
88       
89        int session;
90        char *key;
91       
92        GSList *msgq;
93        char *who;
94        struct groupchat *chat;
95};
96
97struct msn_away_state
98{
99        int number;
100        char code[4];
101        char name[16];
102};
103
104struct msn_status_code
105{
106        int number;
107        char *text;
108        int flags;
109};
110
111struct msn_message
112{
113        char *who;
114        char *text;
115};
116
117struct msn_handler_data
118{
119        int fd;
120        int rxlen;
121        char *rxq;
122       
123        int msglen;
124        char *cmd_text;
125       
126        gpointer data;
127       
128        int (*exec_command) ( gpointer data, char **cmd, int count );
129        int (*exec_message) ( gpointer data, char *msg, int msglen, char **cmd, int count );
130};
131
132/* Bitfield values for msn_status_code.flags */
133#define STATUS_FATAL            1
134#define STATUS_SB_FATAL         2
135#define STATUS_SB_IM_SPARE      4       /* Make one-to-one conversation switchboard available again, invite failed. */
136#define STATUS_SB_CHAT_SPARE    8       /* Same, but also for groupchats (not used yet). */
137
138int msn_chat_id;
139extern const struct msn_away_state msn_away_state_list[];
140extern const struct msn_status_code msn_status_code_list[];
141
142/* Keep a list of all the active connections. We need these lists because
143   "connected" callbacks might be called when the connection they belong too
144   is down already (for example, when an impatient user disabled the
145   connection), the callback should check whether it's still listed here
146   before doing *anything* else. */
147GSList *msn_connections;
148GSList *msn_switchboards;
149
150/* ns.c */
151gboolean msn_ns_connected( gpointer data, gint source, b_input_condition cond );
152
153/* msn_util.c */
154int msn_write( struct im_connection *ic, char *s, int len );
155int msn_logged_in( struct im_connection *ic );
156int msn_buddy_list_add( struct im_connection *ic, char *list, char *who, char *realname );
157int msn_buddy_list_remove( struct im_connection *ic, char *list, char *who );
158void msn_buddy_ask( struct im_connection *ic, char *handle, char *realname );
159char *msn_findheader( char *text, char *header, int len );
160char **msn_linesplit( char *line );
161int msn_handler( struct msn_handler_data *h );
162char *msn_http_encode( const char *input );
163void msn_msgq_purge( struct im_connection *ic, GSList **list );
164
165/* tables.c */
166const struct msn_away_state *msn_away_state_by_number( int number );
167const struct msn_away_state *msn_away_state_by_code( char *code );
168const struct msn_away_state *msn_away_state_by_name( char *name );
169const struct msn_status_code *msn_status_by_number( int number );
170
171/* sb.c */
172int msn_sb_write( struct msn_switchboard *sb, char *s, int len );
173struct msn_switchboard *msn_sb_create( struct im_connection *ic, char *host, int port, char *key, int session );
174struct msn_switchboard *msn_sb_by_handle( struct im_connection *ic, char *handle );
175struct msn_switchboard *msn_sb_by_chat( struct groupchat *c );
176struct msn_switchboard *msn_sb_spare( struct im_connection *ic );
177int msn_sb_sendmessage( struct msn_switchboard *sb, char *text );
178struct groupchat *msn_sb_to_chat( struct msn_switchboard *sb );
179void msn_sb_destroy( struct msn_switchboard *sb );
180gboolean msn_sb_connected( gpointer data, gint source, b_input_condition cond );
181int msn_sb_write_msg( struct im_connection *ic, struct msn_message *m );
182
183#endif //_MSN_H
Note: See TracBrowser for help on using the repository browser.