- Timestamp:
- 2005-11-15T13:20:27Z (19 years ago)
- 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. - Location:
- protocols
- Files:
-
- 1 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/sb.c
rf7f3ada rb135438 2 2 * BitlBee -- An IRC to other IM-networks gateway * 3 3 * * 4 * Copyright 2002-200 4Wilmer van der Gaast and others *4 * Copyright 2002-2005 Wilmer van der Gaast and others * 5 5 \********************************************************************/ 6 6 -
protocols/nogaim.c
rf7f3ada rb135438 468 468 void do_error_dialog( struct gaim_connection *gc, char *msg, char *title ) 469 469 { 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 ); 471 471 } 472 472 -
protocols/oscar/aim_internal.h
rf7f3ada rb135438 107 107 108 108 void aim_initsnachash(aim_session_t *sess); 109 aim_snacid_t aim_newsnac(aim_session_t *, aim_snac_t *newsnac);110 109 aim_snacid_t aim_cachesnac(aim_session_t *sess, const guint16 family, const guint16 type, const guint16 flags, const void *data, const int datalen); 111 110 aim_snac_t *aim_remsnac(aim_session_t *, aim_snacid_t id); -
protocols/oscar/snac.c
rf7f3ada rb135438 14 14 15 15 #include <aim.h> 16 17 static aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac); 16 18 17 19 /* … … 51 53 * list/hash. 52 54 */ 53 aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac)55 static aim_snacid_t aim_newsnac(aim_session_t *sess, aim_snac_t *newsnac) 54 56 { 55 57 aim_snac_t *snac; -
protocols/proxy.c
rf7f3ada rb135438 97 97 } 98 98 99 #ifdef PROXYPROFILER100 struct proxyprofiler101 {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 #endif126 127 99 static gboolean gaim_io_invoke(GIOChannel *source, GIOCondition condition, gpointer data) 128 100 { … … 130 102 GaimInputCondition gaim_cond = 0; 131 103 132 #ifdef PROXYPROFILER133 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 else145 {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 #endif155 156 count_io_event(source, "proxy");157 158 104 if (condition & GAIM_READ_COND) 159 105 gaim_cond |= GAIM_INPUT_READ; -
protocols/ssl_nss.c
rf7f3ada rb135438 2 2 * BitlBee -- An IRC to other IM-networks gateway * 3 3 * * 4 * Copyright 2002-200 4Wilmer van der Gaast and others *4 * Copyright 2002-2005 Wilmer van der Gaast and others * 5 5 \********************************************************************/ 6 6 7 7 /* SSL module - NSS version */ 8 8 9 /* Copyright 200 4Jelmer Vernooij */9 /* Copyright 2005 Jelmer Vernooij */ 10 10 11 11 /*
Note: See TracChangeset
for help on using the changeset viewer.