Changeset 6a415e9 for owl.h


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
  • owl.h

    r38cf544c r6a415e9  
    358358} owl_buddylist;
    359359
     360typedef struct _owl_timer {
     361  int direction;
     362  time_t starttime;
     363  int start;
     364} owl_timer;
    360365
    361366typedef struct _owl_global {
     
    408413  aim_session_t aimsess;
    409414  aim_conn_t waitingconn;
    410   time_t aim_lastnop;
     415  owl_timer aim_noop_timer;
     416  owl_timer aim_ignorelogin_timer;
    411417  int aim_loggedin;
    412418  char *aim_screenname;
Note: See TracChangeset for help on using the changeset viewer.