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

Comparing ircd-hybrid/trunk/include/channel.h (file contents):
Revision 6323 by michael, Sat Aug 8 17:47:58 2015 UTC vs.
Revision 6328 by michael, Sat Aug 8 18:14:06 2015 UTC

# Line 38 | Line 38
38  
39   enum
40   {
41 <  FLOOD_NOTICED      = 0x00000001U,
41 >  MSG_FLOOD_NOTICED  = 0x00000001U,
42    JOIN_FLOOD_NOTICED = 0x00000002U
43   };
44  
45 < #define SetFloodNoticed(x)   ((x)->flags |= FLOOD_NOTICED)
46 < #define IsSetFloodNoticed(x) ((x)->flags & FLOOD_NOTICED)
47 < #define ClearFloodNoticed(x) ((x)->flags &= ~FLOOD_NOTICED)
45 > #define SetFloodNoticed(x)   ((x)->flags |= MSG_FLOOD_NOTICED)
46 > #define IsSetFloodNoticed(x) ((x)->flags & MSG_FLOOD_NOTICED)
47 > #define ClearFloodNoticed(x) ((x)->flags &= ~MSG_FLOOD_NOTICED)
48  
49   #define SetJoinFloodNoticed(x)   ((x)->flags |= JOIN_FLOOD_NOTICED)
50   #define IsSetJoinFloodNoticed(x) ((x)->flags & JOIN_FLOOD_NOTICED)

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)