view libfaim/aim_buddylist.c @ 79:bfdc427b936d

[gaim-migrate @ 89] I'll save time and just post the email :-) Summary of changes: * Misc malloc/free cleanups, use g_malloc more places and other small stuff (e.g. lineardata not being freed in the error case in sound.c) * Misc signed/unsigned cleanups (use size_t more often) * read() can return -1 at any point, check return values more rigorously (read_rv variables used for this) * In can_play_audio, stat requires a pointer to an allocated stat_buf (the address of an automatic variable) * escape_text needs a buffer at least 4 times the size of the text being passed in (not 2 times); I can force core dumps with lots of newlines otherwise * There's a debug statement in netscape_command (browser.c) that was printf("Hello%d\n"); with no int for the %d; I threw in a getppid(), but the statement should probably come out eventually. Thanks, G Sumner Hayes! committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Wed, 05 Apr 2000 05:34:08 +0000
parents 68b230f8da5f
children 6ced2f1c8b24
line wrap: on
line source


#include <aim.h>

/*
 * aim_add_buddy()
 *
 * Adds a single buddy to your buddy list after login.
 *
 */
u_long aim_add_buddy(struct aim_conn_t *conn, char *sn )
{
   struct command_tx_struct newpacket;

   if( !sn )
      return -1;

   if (conn)
     newpacket.conn = conn;
   else
     newpacket.conn = aim_getconn_type(AIM_CONN_TYPE_BOS);

   newpacket.lock = 1;
   newpacket.type = 0x0002;
   newpacket.commandlen = 11 + strlen( sn );
   newpacket.data = (char *)malloc( newpacket.commandlen );

   newpacket.data[0] = 0x00;
   newpacket.data[1] = 0x03;
   newpacket.data[2] = 0x00;
   newpacket.data[3] = 0x04;
   newpacket.data[4] = 0x00;
   newpacket.data[5] = 0x00;

   /* SNAC reqid */
   newpacket.data[6] = (aim_snac_nextid >> 24) & 0xFF;
   newpacket.data[7] = (aim_snac_nextid >> 16) & 0xFF;
   newpacket.data[8] = (aim_snac_nextid >>  8) & 0xFF;
   newpacket.data[9] = (aim_snac_nextid) & 0xFF;

   /* length of screenname */ 
   newpacket.data[10] = strlen( sn );

   memcpy( &(newpacket.data[11]), sn, strlen( sn ) );

   aim_tx_enqueue( &newpacket );

   {
      struct aim_snac_t snac;
    
      snac.id = aim_snac_nextid;
      snac.family = 0x0003;
      snac.type = 0x0004;
      snac.flags = 0x0000;

      snac.data = malloc( strlen( sn ) + 1 );
      memcpy( snac.data, sn, strlen( sn ) + 1 );

      aim_newsnac( &snac );
   }

   return( aim_snac_nextid++ );
}

u_long aim_remove_buddy(struct aim_conn_t *conn, char *sn )
{
   struct command_tx_struct newpacket;

   if( !sn )
      return -1;

   if (conn)
     newpacket.conn = conn;
   else
     newpacket.conn = aim_getconn_type(AIM_CONN_TYPE_BOS);

   newpacket.lock = 1;
   newpacket.type = 0x0002;
   newpacket.commandlen = 11 + strlen(sn);
   newpacket.data = (char *)malloc( newpacket.commandlen );

   newpacket.data[0] = 0x00;
   newpacket.data[1] = 0x03;
   newpacket.data[2] = 0x00;
   newpacket.data[3] = 0x05;
   newpacket.data[4] = 0x00;
   newpacket.data[5] = 0x00;

   /* SNAC reqid */
   newpacket.data[6] = (aim_snac_nextid >> 24) & 0xFF;
   newpacket.data[7] = (aim_snac_nextid >> 16) & 0xFF;
   newpacket.data[8] = (aim_snac_nextid >>  8) & 0xFF;
   newpacket.data[9] = (aim_snac_nextid) & 0xFF;

   /* length of screenname */ 
   newpacket.data[10] = strlen( sn );

   memcpy( &(newpacket.data[11]), sn, strlen( sn ) );

   aim_tx_enqueue( &newpacket );

   {
      struct aim_snac_t snac;
    
      snac.id = aim_snac_nextid;
      snac.family = 0x0003;
      snac.type = 0x0005;
      snac.flags = 0x0000;

      snac.data = malloc( strlen( sn ) + 1 );
      memcpy( snac.data, sn, strlen( sn ) + 1 );

      aim_newsnac( &snac );
   }

   return( aim_snac_nextid++ );
}