ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/include/server.h
Revision: 5510
Committed: Mon Feb 9 19:26:54 2015 UTC (11 years, 5 months ago) by michael
Content type: text/x-chdr
File size: 3957 byte(s)
Log Message:
- server.h: removed redundant struct MaskItem declaration

File Contents

# User Rev Content
1 adx 30 /*
2 michael 2865 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 adx 30 *
4 michael 5347 * Copyright (c) 1997-2015 ircd-hybrid development team
5 adx 30 *
6     * This program is free software; you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation; either version 2 of the License, or
9     * (at your option) any later version.
10     *
11     * This program is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with this program; if not, write to the Free Software
18 michael 4565 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 adx 30 * USA
20     */
21    
22 michael 3347 /*! \file server.h
23 michael 2865 * \brief A header for the server functions.
24     * \version $Id$
25     */
26    
27 adx 30 #ifndef INCLUDED_serv_h
28     #define INCLUDED_serv_h
29    
30 michael 2925
31 adx 30 /*
32     * number of seconds to wait after server starts up, before
33     * starting try_connections()
34 michael 2865 * TOO SOON and you can nick collide like crazy.
35 adx 30 */
36     #define STARTUP_CONNECTIONS_TIME 60
37    
38     struct Client;
39 michael 1632 struct MaskItem;
40 adx 30 struct Channel;
41    
42     /* Capabilities */
43     struct Capability
44     {
45     dlink_node node;
46 michael 1320 char *name; /* name of capability */
47 adx 30 unsigned int cap; /* mask value */
48     };
49    
50 michael 5475 #define CAP_QS 0x00000001 /* Can handle quit storm removal */
51     #define CAP_EX 0x00000002 /* Can do channel +e exemptions */
52     #define CAP_IE 0x00000004 /* Can do invite exceptions */
53     #define CAP_EOB 0x00000008 /* Can do EOB message */
54     #define CAP_KLN 0x00000010 /* Can do KLINE message */
55     #define CAP_GLN 0x00000020 /* Can do GLINE message */
56     #define CAP_TS6 0x00000040 /* Can do TS6 */
57     #define CAP_KNOCK 0x00000080 /* supports KNOCK */
58     #define CAP_UNKLN 0x00000100 /* Can do UNKLINE message */
59     #define CAP_CLUSTER 0x00000200 /* supports server clustering */
60     #define CAP_ENCAP 0x00000400 /* supports ENCAP message */
61     #define CAP_HOPS 0x00000800 /* supports HALFOPS */
62     #define CAP_TBURST 0x00001000 /* supports TBURST */
63     #define CAP_SVS 0x00002000 /* supports services */
64     #define CAP_DLN 0x00004000 /* Can do DLINE message */
65     #define CAP_UNDLN 0x00008000 /* Can do UNDLINE message */
66     #define CAP_CHW 0x00010000 /* Can do channel wall @# */
67 adx 30
68     /*
69     * Capability macros.
70     */
71 michael 4588 #define IsCapable(x, cap) ((x)->connection->caps & (cap))
72     #define SetCapable(x, cap) ((x)->connection->caps |= (cap))
73     #define ClearCap(x, cap) ((x)->connection->caps &= ~(cap))
74 adx 30
75    
76     /*
77 michael 2865 * return values for hunt_server()
78 adx 30 */
79 michael 2868 enum
80     {
81     HUNTED_NOSUCH = -1, /* If the hunted server is not found */
82     HUNTED_ISME = 0, /* If this server should execute the command */
83     HUNTED_PASS = 1 /* If message passed onwards successfully */
84     };
85 adx 30
86 michael 1115 extern int valid_servname(const char *);
87 michael 1302 extern int check_server(const char *, struct Client *);
88 michael 3156 extern int hunt_server(struct Client *, const char *, const int, const int, char *[]);
89 adx 30 extern void add_capability(const char *, int, int);
90     extern int delete_capability(const char *);
91 michael 1877 extern int unsigned find_capability(const char *);
92 michael 1632 extern void send_capabilities(struct Client *, int);
93 adx 30 extern void write_links_file(void *);
94 michael 2216 extern void read_links_file(void);
95 michael 2282 extern const char *show_capabilities(const struct Client *);
96 adx 30 extern void try_connections(void *);
97 michael 1632 extern int serv_connect(struct MaskItem *, struct Client *);
98 adx 30 extern struct Client *find_servconn_in_progress(const char *);
99     extern struct Server *make_server(struct Client *);
100 michael 3347 #endif /* INCLUDED_server.h */

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision