Changeset 6a415e9 for aim.c


Ignore:
Timestamp:
Jun 4, 2003, 10:55:13 AM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
65ad073
Parents:
2824f79
Message:
Added the variable 'aim_ingorelogin_timer', which specifies the number
  of seconds after an AIM login for which AIM login notifications should
  be ignored.  Defaults to 0 for now.
Added the timer object to implement the above and to replace other timers
  that have been impelmented by hand.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • aim.c

    rfd93b41 r6a415e9  
    14091409  va_end(ap);
    14101410
     1411  /* first check that we're not still ignoreing login messages */
     1412  if (!owl_timer_is_expired(owl_global_get_aim_login_timer(&g))) return;
     1413 
    14111414  owl_buddylist_oncoming(owl_global_get_buddylist(&g), userinfo->sn);
    14121415 
Note: See TracChangeset for help on using the changeset viewer.