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 2136 by michael, Tue May 14 19:21:32 2013 UTC vs.
Revision 2137 by michael, Wed May 29 19:49:27 2013 UTC

# Line 159 | Line 159
159   #define UMODE_OPER         0x00400000 /**< Operator */
160   #define UMODE_ADMIN        0x00800000 /**< Admin on server */
161   #define UMODE_FARCONNECT   0x01000000 /**< Can see remote client connects/exits */
162 + #define UMODE_HIDDENHOST   0x02000000 /**< User's host is hidden */
163  
164  
165   #define UMODE_ALL          UMODE_SERVNOTICE
# Line 257 | Line 258
258   #define SetExemptResv(x)        ((x)->flags |= FLAGS_EXEMPTRESV)
259   #define SetIPSpoof(x)           ((x)->flags |= FLAGS_IP_SPOOFING)
260   #define IsIPSpoof(x)            ((x)->flags & FLAGS_IP_SPOOFING)
261 + #define DelIPSpoof(x)           ((x)->flags &= ~FLAGS_IP_SPOOFING)
262  
263   #define IsFloodDone(x)          ((x)->flags &  FLAGS_FLOODDONE)
264   #define SetFloodDone(x)         ((x)->flags |= FLAGS_FLOODDONE)

Diff Legend

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