Changes in protocols/msn/msn.h [79bb7e4:9b0ad7e]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/msn.h
r79bb7e4 r9b0ad7e 2 2 * BitlBee -- An IRC to other IM-networks gateway * 3 3 * * 4 * Copyright 2002-201 2Wilmer van der Gaast and others *4 * Copyright 2002-2010 Wilmer van der Gaast and others * 5 5 \********************************************************************/ 6 6 … … 53 53 */ 54 54 55 /* <= BitlBee 3.0.556 55 #define MSNP11_PROD_KEY "ILTXC!4IXB5FB*PX" 57 56 #define MSNP11_PROD_ID "PROD0119GSJUC$18" 58 */ 59 60 #define MSNP11_PROD_KEY "C1BX{V4W}Q3*10SM" 61 #define MSNP11_PROD_ID "PROD0120PW!CCV9@" 62 #define MSNP_VER "MSNP18" 63 #define MSNP_BUILD "14.0.8117.416" 57 #define MSNP_VER "MSNP15" 58 #define MSNP_BUILD "8.5.1288" 64 59 65 60 #define MSN_SB_NEW -24062002 66 67 #define MSN_CAP1 0xC00068 #define MSN_CAP2 0x000069 61 70 62 #define MSN_MESSAGE_HEADERS "MIME-Version: 1.0\r\n" \ … … 126 118 char *tokens[4]; 127 119 char *lock_key, *pp_policy; 128 char *uuid;129 120 130 121 GSList *msgq, *grpq, *soapq; … … 231 222 232 223 /* ns.c */ 233 int msn_ns_write( struct im_connection *ic, int fd, const char *fmt, ... ) G_GNUC_PRINTF( 3, 4 );224 int msn_ns_write( struct im_connection *ic, int fd, const char *fmt, ... ); 234 225 gboolean msn_ns_connect( struct im_connection *ic, struct msn_handler_data *handler, const char *host, int port ); 235 226 void msn_ns_close( struct msn_handler_data *handler ); … … 237 228 void msn_auth_got_contact_list( struct im_connection *ic ); 238 229 int msn_ns_finish_login( struct im_connection *ic ); 239 int msn_ns_sendmessage( struct im_connection *ic, struct bee_user *bu, const char *text );240 void msn_ns_oim_send_queue( struct im_connection *ic, GSList **msgq );241 230 242 231 /* msn_util.c */ … … 253 242 struct msn_group *msn_group_by_id( struct im_connection *ic, const char *id ); 254 243 int msn_ns_set_display_name( struct im_connection *ic, const char *value ); 255 const char *msn_normalize_handle( const char *handle );256 244 257 245 /* tables.c */ … … 262 250 263 251 /* sb.c */ 264 int msn_sb_write( struct msn_switchboard *sb, const char *fmt, ... ) G_GNUC_PRINTF( 2, 3 );;252 int msn_sb_write( struct msn_switchboard *sb, const char *fmt, ... ); 265 253 struct msn_switchboard *msn_sb_create( struct im_connection *ic, char *host, int port, char *key, int session ); 266 struct msn_switchboard *msn_sb_by_handle( struct im_connection *ic, c onst char *handle );254 struct msn_switchboard *msn_sb_by_handle( struct im_connection *ic, char *handle ); 267 255 struct msn_switchboard *msn_sb_by_chat( struct groupchat *c ); 268 256 struct msn_switchboard *msn_sb_spare( struct im_connection *ic );
Note: See TracChangeset
for help on using the changeset viewer.