Changeset c99af3a
- Timestamp:
- 2006-04-13T07:30:11Z (19 years ago)
- Branches:
- master
- Children:
- 4d89886
- Parents:
- 88b3a07
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
account.c
r88b3a07 rc99af3a 141 141 void account_off( irc_t *irc, account_t *a ) 142 142 { 143 account_offline( a->gc ); 143 a->gc->wants_to_die = TRUE; 144 signoff( a->gc ); 144 145 a->gc = NULL; 145 146 if( a->reconnect ) -
irc.c
r88b3a07 rc99af3a 233 233 234 234 for (account = irc->accounts; account; account = account->next) { 235 if (account->gc) 236 account_offline(account->gc); 237 else if (account->reconnect) 235 if (account->gc) { 236 account->gc->wants_to_die = TRUE; 237 signoff(account->gc); 238 } else if (account->reconnect) { 238 239 cancel_auto_reconnect(account); 240 } 239 241 } 240 242 -
protocols/nogaim.c
r88b3a07 rc99af3a 387 387 while( g_source_remove_by_user_data( (gpointer) a ) ); 388 388 a->reconnect = 0; 389 }390 391 void account_offline( struct gaim_connection *gc )392 {393 gc->wants_to_die = TRUE;394 signoff( gc );395 389 } 396 390 -
protocols/nogaim.h
r88b3a07 rc99af3a 212 212 G_MODULE_EXPORT void serv_got_crap( struct gaim_connection *gc, char *format, ... ); 213 213 G_MODULE_EXPORT void account_online( struct gaim_connection *gc ); 214 G_MODULE_EXPORT void account_offline( struct gaim_connection *gc );215 214 G_MODULE_EXPORT void signoff( struct gaim_connection *gc ); 216 215
Note: See TracChangeset
for help on using the changeset viewer.