Changeset 17a6ee9 for protocols/msn
- Timestamp:
- 2010-04-11T14:37:06Z (15 years ago)
- Branches:
- master
- Children:
- a87e6ba
- Parents:
- 1f92a58
- Location:
- protocols/msn
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/Makefile
r1f92a58 r17a6ee9 10 10 11 11 # [SH] Program variables 12 objects = invitation.omsn.o msn_util.o ns.o passport.o sb.o tables.o12 objects = msn.o msn_util.o ns.o passport.o sb.o tables.o 13 13 14 14 CFLAGS += -Wall -
protocols/msn/msn.c
r1f92a58 r17a6ee9 81 81 if( md ) 82 82 { 83 /** Disabling MSN ft support for now. 83 84 while( md->filetransfers ) { 84 85 imcb_file_canceled( md->filetransfers->data, "Closing connection" ); 85 86 } 87 */ 86 88 87 89 if( md->fd >= 0 ) … … 344 346 ret->send_typing = msn_send_typing; 345 347 ret->handle_cmp = g_strcasecmp; 346 ret->transfer_request = msn_ftp_transfer_request;348 //ret->transfer_request = msn_ftp_transfer_request; 347 349 348 350 register_protocol(ret); -
protocols/msn/msn_util.c
r1f92a58 r17a6ee9 96 96 msn_buddy_list_add( bla->ic, "AL", bla->handle, bla->realname ); 97 97 98 if( imcb_find_buddy( bla->ic, bla->handle ) == NULL ) 99 imcb_ask_add( bla->ic, bla->handle, NULL ); 98 imcb_ask_add( bla->ic, bla->handle, NULL ); 100 99 101 100 g_free( bla->handle ); -
protocols/msn/sb.c
r1f92a58 r17a6ee9 691 691 } 692 692 } 693 #if 0 694 // Disable MSN ft support for now. 693 695 else if( g_strncasecmp( ct, "text/x-msmsgsinvite", 19 ) == 0 ) 694 696 { … … 723 725 g_free( command ); 724 726 } 727 #endif 725 728 else if( g_strncasecmp( ct, "application/x-msnmsgrp2p", 24 ) == 0 ) 726 729 {
Note: See TracChangeset
for help on using the changeset viewer.