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

Comparing ircd-hybrid/branches/8.1.x/include/listener.h (file contents):
Revision 3085 by michael, Sun Jan 19 14:35:59 2014 UTC vs.
Revision 3086 by michael, Sat Mar 1 18:41:09 2014 UTC

# Line 27 | Line 27
27   #ifndef INCLUDED_listener_h
28   #define INCLUDED_listener_h
29  
30 #define LISTENER_SSL    0x1
31 #define LISTENER_HIDDEN 0x2
32 #define LISTENER_SERVER 0x4
33
30   #include "ircd_defs.h"
31   #include "fdlist.h"
32  
33   struct Client;
34  
35 + enum
36 + {
37 +  LISTENER_SSL    = 1 << 0,
38 +  LISTENER_HIDDEN = 1 << 1,
39 +  LISTENER_SERVER = 1 << 2
40 + };
41 +
42   struct Listener
43   {
44    dlink_node       node;      /* list node pointer */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines