Changeset 1c8e5f7 for irc.h


Ignore:
Timestamp:
2010-06-11T15:12:27Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
12b29db
Parents:
70ac477
Message:

Added away_reply_timeout setting so BitlBee will suppress away messages sent
in response to PRIVMSG if one was sent recently - some IRC clients including
irssi don't do this very well (when talking to >1 people who are away for
example).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.h

    r70ac477 r1c8e5f7  
    109109        irc_user_flags_t flags;
    110110       
    111         GString *pastebuf;
     111        GString *pastebuf; /* Paste buffer (combine lines into a multiline msg). */
    112112        guint pastebuf_timer;
     113        time_t away_reply_timeout; /* Only send a 301 if this time passed. */
    113114       
    114115        struct bee_user *bu;
     
    146147        time_t topic_time;
    147148       
    148         GSList *users;
     149        GSList *users; /* struct irc_channel_user */
    149150        struct set *set;
    150151       
    151         GString *pastebuf;
     152        GString *pastebuf; /* Paste buffer (combine lines into a multiline msg). */
    152153        guint pastebuf_timer;
    153154       
Note: See TracChangeset for help on using the changeset viewer.