Changeset 8bcd160


Ignore:
Timestamp:
2015-04-06T16:22:05Z (9 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
a9b1e0e
Parents:
e3e2059
git-author:
dequis <dx@…> (24-01-15 20:20:42)
git-committer:
dequis <dx@…> (06-04-15 16:22:05)
Message:

msn: remove old/broken/unused msnftp stuff (requires distclean!)

Since this removes invitation.h, do "make distclean" to fix build errors

MSNFTP is a file transfer method used by early msn messenger versions,
and has been replaced by MSNP2P probably 10 years ago.

This code was disabled/commented out in bitlbee

Location:
protocols/msn
Files:
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/msn.c

    re3e2059 r8bcd160  
    9696
    9797        if (md) {
    98                 /** Disabling MSN ft support for now.
    99                 while( md->filetransfers ) {
    100                         imcb_file_canceled( md->filetransfers->data, "Closing connection" );
    101                 }
    102                 */
    103 
    10498                msn_ns_close(md->ns);
    10599
     
    470464        ret->buddy_action = msn_buddy_action;
    471465
    472         //ret->transfer_request = msn_ftp_transfer_request;
    473 
    474466        register_protocol(ret);
    475467}
  • protocols/msn/sb.c

    re3e2059 r8bcd160  
    2929#include "md5.h"
    3030#include "soap.h"
    31 #include "invitation.h"
    3231
    3332static gboolean msn_sb_callback(gpointer data, gint source, b_input_condition cond);
     
    182181                } else if (strcmp(text, SB_KEEPALIVE_MESSAGE) == 0) {
    183182                        buf = g_strdup(MSN_SB_KEEPALIVE_HEADERS);
    184                         i = strlen(buf);
    185                 } else if (strncmp(text, MSN_INVITE_HEADERS, sizeof(MSN_INVITE_HEADERS) - 1) == 0) {
    186                         buf = g_strdup(text);
    187183                        i = strlen(buf);
    188184                } else {
     
    664660                        }
    665661                }
    666 #if 0
    667                 // Disable MSN ft support for now.
    668                 else if (g_strncasecmp(ct, "text/x-msmsgsinvite", 19) == 0) {
    669                         char *command = get_rfc822_header(body, "Invitation-Command:", blen);
    670                         char *cookie = get_rfc822_header(body, "Invitation-Cookie:", blen);
    671                         unsigned int icookie;
    672 
    673                         g_free(ct);
    674 
    675                         /* Every invite should have both a Command and Cookie header */
    676                         if (!command || !cookie) {
    677                                 g_free(command);
    678                                 g_free(cookie);
    679                                 imcb_log(ic, "Warning: No command or cookie from %s", sb->who);
    680                                 return 1;
    681                         }
    682 
    683                         icookie = strtoul(cookie, NULL, 10);
    684                         g_free(cookie);
    685 
    686                         if (g_strncasecmp(command, "INVITE", 6) == 0) {
    687                                 msn_invitation_invite(sb, cmd[1], icookie, body, blen);
    688                         } else if (g_strncasecmp(command, "ACCEPT", 6) == 0) {
    689                                 msn_invitation_accept(sb, cmd[1], icookie, body, blen);
    690                         } else if (g_strncasecmp(command, "CANCEL", 6) == 0) {
    691                                 msn_invitation_cancel(sb, cmd[1], icookie, body, blen);
    692                         } else {
    693                                 imcb_log(ic, "Warning: Received invalid invitation with "
    694                                          "command %s from %s", command, sb->who);
    695                         }
    696 
    697                         g_free(command);
    698                 }
    699 #endif
    700662                else if (g_strncasecmp(ct, "application/x-msnmsgrp2p", 24) == 0) {
    701663                        /* Not currently implemented. Don't warn about it since
Note: See TracChangeset for help on using the changeset viewer.