Changeset b135438 for protocols


Ignore:
Timestamp:
2005-11-15T13:20:27Z (19 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
c998255, f56c491
Parents:
f7f3ada (diff), c1ede6e8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge changes from Wilmer

Location:
protocols
Files:
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/sb.c

    rf7f3ada rb135438  
    22  * BitlBee -- An IRC to other IM-networks gateway                     *
    33  *                                                                    *
    4   * Copyright 2002-2004 Wilmer van der Gaast and others                *
     4  * Copyright 2002-2005 Wilmer van der Gaast and others                *
    55  \********************************************************************/
    66
  • protocols/nogaim.c

    rf7f3ada rb135438  
    468468void do_error_dialog( struct gaim_connection *gc, char *msg, char *title )
    469469{
    470         irc_usermsg( gc->irc, "%s(%s) - Error: %s", gc->username, title, msg );
     470        irc_usermsg( gc->irc, "%s(%s) - Error: %s", gc->prpl->name, gc->username, msg );
    471471}
    472472
  • protocols/oscar/aim_internal.h

    rf7f3ada rb135438  
    107107
    108108void aim_initsnachash(aim_session_t *sess);
    109 aim_snacid_t aim_newsnac(aim_session_t *, aim_snac_t *newsnac);
    110109aim_snacid_t aim_cachesnac(aim_session_t *sess, const guint16 family, const guint16 type, const guint16 flags, const void *data, const int datalen);
    111110aim_snac_t *aim_remsnac(aim_session_t *, aim_snacid_t id);
  • protocols/oscar/snac.c

    rf7f3ada rb135438  
    1414
    1515#include <aim.h>
     16
     17static aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac);
    1618
    1719/*
     
    5153 * list/hash.
    5254 */
    53 aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac)
     55static aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac)
    5456{
    5557        aim_snac_t *snac;
  • protocols/proxy.c

    rf7f3ada rb135438  
    9797}
    9898
    99 #ifdef PROXYPROFILER
    100 struct proxyprofiler
    101 {
    102         GaimInputFunction function;
    103         gpointer data;
    104        
    105         int count;
    106        
    107         struct proxyprofiler *next;
    108 } *pp = NULL;
    109 
    110 void proxyprofiler_dump()
    111 {
    112         struct proxyprofiler *l;
    113         char s[128];
    114         FILE *fp;
    115        
    116         sprintf( s, "proxyprofiler.%d", (int) getpid() );
    117         fp = fopen( s, "w" );
    118        
    119         fprintf( fp, "%-18s  %-18s  %10s\n", "Function", "Data", "Count" );
    120         for( l = pp; l; l = l->next )
    121                 fprintf( fp, "0x%-16x  0x%-16x  %10d\n", (int) l->function, (int) l->data, l->count );
    122        
    123         fclose( fp );
    124 }
    125 #endif
    126 
    12799static gboolean gaim_io_invoke(GIOChannel *source, GIOCondition condition, gpointer data)
    128100{
     
    130102        GaimInputCondition gaim_cond = 0;
    131103
    132 #ifdef PROXYPROFILER
    133         struct proxyprofiler *l;
    134        
    135         for( l = pp; l; l = l->next )
    136         {
    137                 if( closure->function == l->function && closure->data == l->data )
    138                         break;
    139         }
    140         if( l )
    141         {
    142                 l->count ++;
    143         }
    144         else
    145         {
    146                 l = g_new0( struct proxyprofiler, 1 );
    147                 l->function = closure->function;
    148                 l->data = closure->data;
    149                 l->count = 1;
    150                
    151                 l->next = pp;
    152                 pp = l;
    153         }
    154 #endif
    155        
    156         count_io_event(source, "proxy");
    157        
    158104        if (condition & GAIM_READ_COND)
    159105                gaim_cond |= GAIM_INPUT_READ;
  • protocols/ssl_nss.c

    rf7f3ada rb135438  
    22  * BitlBee -- An IRC to other IM-networks gateway                     *
    33  *                                                                    *
    4   * Copyright 2002-2004 Wilmer van der Gaast and others                *
     4  * Copyright 2002-2005 Wilmer van der Gaast and others                *
    55  \********************************************************************/
    66
    77/* SSL module - NSS version                                             */
    88
    9 /* Copyright 2004 Jelmer Vernooij                                       */
     9/* Copyright 2005 Jelmer Vernooij                                       */
    1010
    1111/*
Note: See TracChangeset for help on using the changeset viewer.