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-8/include/client.h (file contents):
Revision 1192 by michael, Thu Aug 18 20:25:18 2011 UTC vs.
Revision 1216 by michael, Tue Sep 13 18:22:31 2011 UTC

# Line 405 | Line 405 | struct LocalUser
405   #define OPER_FLAG_OPER_SPY     0x00001000 /* */
406   #define OPER_FLAG_REMOTEBAN    0x00002000 /* */
407   #define OPER_FLAG_HIDDEN_OPER  0x00004000 /* */
408 + #define OPER_FLAG_GLOBOPS      0x00008000
409  
410   #define SetOFlag(x, y) ((x)->localClient->operflags |= (y))
411  
# Line 534 | Line 535 | struct LocalUser
535   #define IsOperHiddenAdmin(x)    (MyConnect(x) ? (x)->localClient->operflags & OPER_FLAG_HIDDEN_ADMIN : 0)
536   #define IsOperX(x)              (MyConnect(x) ? (x)->localClient->operflags & OPER_FLAG_X : 0)
537   #define IsOperWall(x)           (MyConnect(x) ? (x)->localClient->operflags & OPER_FLAG_OPERWALL : 0)
538 + #define IsOperGlobops(x)        (MyConnect(x) ? (x)->localClient->operflags & OPER_FLAG_GLOBOPS : 0)
539   #define IsOperRemoteBan(x)      (MyConnect(x) ? (x)->localClient->operflags & OPER_FLAG_REMOTEBAN : 0)
540   #define IsOperHidden(x)         (MyConnect(x) ? (x)->localClient->operflags & OPER_FLAG_HIDDEN_OPER : 0)
541  

Diff Legend

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