ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/include/channel.h
(Generate patch)

Comparing ircd-hybrid/branches/8.2.x/include/channel.h (file contents):
Revision 7007 by michael, Fri Jan 1 00:09:08 2016 UTC vs.
Revision 7329 by michael, Thu Feb 18 21:07:50 2016 UTC

# Line 71 | Line 71 | struct Channel
71    char topic[TOPICLEN + 1];
72    char topic_info[NICKLEN + USERLEN + HOSTLEN + 3];
73  
74 <  time_t creationtime;
75 <  time_t topic_time;
76 <  time_t last_knock;  /**< Don't allow knock to flood */
77 <  time_t last_invite;
78 <  time_t last_join_time;
79 <  time_t first_received_message_time; /*!< channel flood control */
74 >  uintmax_t creationtime;
75 >  uintmax_t topic_time;
76 >  uintmax_t last_knock;  /**< Don't allow knock to flood */
77 >  uintmax_t last_invite;
78 >  uintmax_t last_join_time;
79 >  uintmax_t first_received_message_time; /*!< channel flood control */
80    unsigned int flags;
81    int received_number_of_privmsgs;
82  
# Line 113 | Line 113 | struct Ban
113    char host[HOSTLEN + 1];
114    char who[NICKLEN + USERLEN + HOSTLEN + 3];
115    size_t len;
116 <  time_t when;
116 >  uintmax_t when;
117    struct irc_ssaddr addr;
118    int bits;
119    int type;
# Line 142 | Line 142 | extern void channel_send_modes(struct Cl
142   extern void channel_modes(struct Channel *, struct Client *, char *, char *);
143   extern void check_spambot_warning(struct Client *, const char *);
144   extern void channel_free(struct Channel *);
145 < extern void channel_set_topic(struct Channel *, const char *, const char *, time_t, int);
145 > extern void channel_set_topic(struct Channel *, const char *, const char *, uintmax_t, int);
146  
147   extern const char *get_member_status(const struct Membership *, const int);
148  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines