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

Comparing ircd-hybrid/trunk/include/client.h (file contents):
Revision 2813 by michael, Sun Jan 12 20:23:50 2014 UTC vs.
Revision 2852 by michael, Sat Jan 18 16:30:48 2014 UTC

# Line 187 | Line 187 | struct MaskItem;
187   #define OPER_FLAG_UNKLINE        0x00000004 /**< Oper can use unkline        */
188   #define OPER_FLAG_GLINE          0x00000008 /**< Oper can use gline          */
189   #define OPER_FLAG_K              0x00000010 /**< Oper can kill/kline         */
190 < #define OPER_FLAG_X              0x00000020 /**< Oper can xline              */
190 > #define OPER_FLAG_XLINE          0x00000020 /**< Oper can xline              */
191   #define OPER_FLAG_DIE            0x00000040 /**< Oper can die                */
192   #define OPER_FLAG_REHASH         0x00000080 /**< Oper can rehash             */
193   #define OPER_FLAG_ADMIN          0x00000100 /**< Oper can set umode +a       */
# Line 205 | Line 205 | struct MaskItem;
205   #define OPER_FLAG_CONNECT_REMOTE 0x00100000 /**< Oper can do global CONNECT */
206   #define OPER_FLAG_WALLOPS        0x00200000 /**< Oper can do WALLOPS */
207   #define OPER_FLAG_LOCOPS         0x00400000 /**< Oper can do LOCOPS */
208 + #define OPER_FLAG_UNXLINE        0x00800000 /**< Oper can unxline            */
209 +
210  
211   #define HasOFlag(x, y) (MyConnect(x) ? (x)->localClient->operflags & (y) : 0)
212   #define AddOFlag(x, y) ((x)->localClient->operflags |=  (y))

Diff Legend

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