]> jfr.im git - solanum.git/blame - include/s_serv.h
Remove Windows support
[solanum.git] / include / s_serv.h
CommitLineData
212380e3
AC
1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * s_serv.h: A header for the server functions.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
212380e3
AC
23 */
24
25#ifndef INCLUDED_serv_h
26#define INCLUDED_serv_h
27
9b8e9eb3 28#include "defaults.h"
346fba92 29#include "capability.h"
212380e3
AC
30
31/*
32 * The number of seconds between calls to try_connections(). Fiddle with
33 * this ONLY if you KNOW what you're doing!
34 */
35#define TRY_CONNECTIONS_TIME 60
36
212380e3
AC
37/*
38 * number of seconds to wait after server starts up, before
39 * starting try_connections()
55abcbb2 40 * TOO SOON and you can nick collide like crazy.
212380e3
AC
41 */
42#define STARTUP_CONNECTIONS_TIME 60
43
44struct Client;
45struct server_conf;
46struct Channel;
47
48/* Capabilities */
346fba92 49extern struct CapabilityIndex *serv_capindex;
486cd344 50extern struct CapabilityIndex *cli_capindex;
346fba92 51
32df5e96
AC
52/* register client capabilities with this structure for 3.2 enhanced capability negotiation */
53#define CLICAP_FLAGS_STICKY 0x001
738b5d29 54#define CLICAP_FLAGS_PRIORITY 0x002
32df5e96
AC
55
56struct ClientCapability {
3c7d6fcc
EM
57 bool (*visible)(struct Client *); /* whether or not to display the capability. set to NULL or true return value = displayed */
58 const char *(*data)(struct Client *); /* any custom data for the capability. set to NULL or return NULL = no data */
32df5e96
AC
59 unsigned int flags;
60};
61
62/* builtin client capabilities */
63extern unsigned int CLICAP_MULTI_PREFIX;
32df5e96
AC
64extern unsigned int CLICAP_ACCOUNT_NOTIFY;
65extern unsigned int CLICAP_EXTENDED_JOIN;
66extern unsigned int CLICAP_AWAY_NOTIFY;
32df5e96
AC
67extern unsigned int CLICAP_USERHOST_IN_NAMES;
68extern unsigned int CLICAP_CAP_NOTIFY;
69extern unsigned int CLICAP_CHGHOST;
be2ce24c 70extern unsigned int CLICAP_ECHO_MESSAGE;
32df5e96 71
346fba92
AC
72/*
73 * XXX: this is kind of ugly, but this allows us to have backwards
74 * API-compatibility.
75 */
76extern unsigned int CAP_CAP; /* received a CAP to begin with */
77extern unsigned int CAP_QS; /* Can handle quit storm removal */
78extern unsigned int CAP_EX; /* Can do channel +e exemptions */
79extern unsigned int CAP_CHW; /* Can do channel wall @# */
80extern unsigned int CAP_IE; /* Can do invite exceptions */
81extern unsigned int CAP_KLN; /* Can do KLINE message */
346fba92
AC
82extern unsigned int CAP_KNOCK; /* supports KNOCK */
83extern unsigned int CAP_TB; /* supports TBURST */
84extern unsigned int CAP_UNKLN; /* supports remote unkline */
85extern unsigned int CAP_CLUSTER; /* supports cluster stuff */
86extern unsigned int CAP_ENCAP; /* supports ENCAP */
87extern unsigned int CAP_TS6; /* supports TS6 or above */
88extern unsigned int CAP_SERVICE; /* supports services */
89extern unsigned int CAP_RSFNC; /* rserv FNC */
90extern unsigned int CAP_SAVE; /* supports SAVE (nick collision FNC) */
91extern unsigned int CAP_EUID; /* supports EUID (ext UID + nonencap CHGHOST) */
92extern unsigned int CAP_EOPMOD; /* supports EOPMOD (ext +z + ext topic) */
93extern unsigned int CAP_BAN; /* supports propagated bans */
94extern unsigned int CAP_MLOCK; /* supports MLOCK messages */
95
96/* XXX: added for backwards compatibility. --nenolod */
97#define CAP_MASK (capability_index_mask(serv_capindex) & ~(CAP_TS6 | CAP_CAP))
212380e3 98
212380e3
AC
99/*
100 * Capability macros.
101 */
102#define IsCapable(x, cap) (((x)->localClient->caps & (cap)) == cap)
103#define NotCapable(x, cap) (((x)->localClient->caps & (cap)) == 0)
104#define ClearCap(x, cap) ((x)->localClient->caps &= ~(cap))
105
212380e3
AC
106/*
107 * Globals
108 *
109 *
110 * list of recognized server capabilities. "TS" is not on the list
111 * because all servers that we talk to already do TS, and the kludged
112 * extra argument to "PASS" takes care of checking that. -orabidoo
113 */
212380e3
AC
114extern int MaxClientCount; /* GLOBAL - highest number of clients */
115extern int MaxConnectionCount; /* GLOBAL - highest number of connections */
116
117extern int refresh_user_links;
118
119/*
55abcbb2 120 * return values for hunt_server()
212380e3
AC
121 */
122#define HUNTED_NOSUCH (-1) /* if the hunted server is not found */
123#define HUNTED_ISME 0 /* if this server should execute the command */
124#define HUNTED_PASS 1 /* if message passed onwards successfully */
125
346fba92 126extern void init_builtin_capabs(void);
212380e3
AC
127
128extern int hunt_server(struct Client *client_pt,
129 struct Client *source_pt,
130 const char *command, int server, int parc, const char **parv);
346fba92 131extern void send_capabilities(struct Client *, unsigned int);
212380e3
AC
132extern const char *show_capabilities(struct Client *client);
133extern void try_connections(void *unused);
212380e3
AC
134
135extern int check_server(const char *name, struct Client *server);
136extern int server_estab(struct Client *client_p);
137
138extern int serv_connect(struct server_conf *, struct Client *);
139
140#endif /* INCLUDED_s_serv_h */