Changeset 6a415e9 for commands.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
  • commands.c

    r38cf544c r6a415e9  
    19311931  if (!ret) {
    19321932    owl_function_makemsg("%s logged in.\n", argv[1]);
     1933
     1934    /* start the ingorelogin timer */
     1935    owl_timer_reset_newstart(owl_global_get_aim_login_timer(&g),
     1936                             owl_global_get_aim_ignorelogin_timer(&g));
     1937   
    19331938    return(NULL);
    19341939  }
Note: See TracChangeset for help on using the changeset viewer.