Changeset 748bcdd
- Timestamp:
- 2010-11-21T15:23:54Z (14 years ago)
- Branches:
- master
- Children:
- 495d21b
- Parents:
- bb151f7
- Location:
- protocols
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/account.c
rbb151f7 r748bcdd 339 339 } 340 340 341 static gboolean account_on_timeout( gpointer d, gint fd, b_input_condition cond ); 342 341 343 void account_on( bee_t *bee, account_t *a ) 342 344 { … … 351 353 a->reconnect = 0; 352 354 a->prpl->login( a ); 355 356 if( !( a->ic->flags & OPT_SLOW_LOGIN ) ) 357 a->ic->keepalive = b_timeout_add( 120000, account_on_timeout, a->ic ); 353 358 } 354 359 … … 362 367 cancel_auto_reconnect( a ); 363 368 } 369 } 370 371 static gboolean account_on_timeout( gpointer d, gint fd, b_input_condition cond ) 372 { 373 struct im_connection *ic = d; 374 375 imcb_error( ic, "Connection timeout" ); 376 imc_logout( ic, TRUE ); 377 378 return FALSE; 364 379 } 365 380 -
protocols/nogaim.c
rbb151f7 r748bcdd 277 277 imcb_log( ic, "Logged in" ); 278 278 279 b_event_remove( ic->keepalive ); 279 280 ic->keepalive = b_timeout_add( 60000, send_keepalive, ic ); 280 281 ic->flags |= OPT_LOGGED_IN; -
protocols/nogaim.h
rbb151f7 r748bcdd 64 64 #define OPT_DOES_HTML 0x00000010 65 65 #define OPT_LOCALBUDDY 0x00000020 /* For nicks local to one groupchat */ 66 #define OPT_SLOW_LOGIN 0x00000040 /* I.e. Twitter Oauth @ login time */ 66 67 #define OPT_TYPING 0x00000100 /* Some pieces of code make assumptions */ 67 68 #define OPT_THINKING 0x00000200 /* about these values... Stupid me! */ -
protocols/twitter/twitter.c
rbb151f7 r748bcdd 108 108 109 109 td->oauth_info = oauth_request_token( &twitter_oauth, twitter_oauth_callback, ic ); 110 111 /* We need help from the user to complete OAuth login, so don't time 112 out on this login. */ 113 ic->flags |= OPT_SLOW_LOGIN; 110 114 } 111 115
Note: See TracChangeset
for help on using the changeset viewer.