| 1 |
/* |
| 2 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
| 3 |
* |
| 4 |
* Copyright (c) 1997-2015 ircd-hybrid development team |
| 5 |
* |
| 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 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
| 19 |
* USA |
| 20 |
*/ |
| 21 |
|
| 22 |
/*! \file server.h |
| 23 |
* \brief A header for the server functions. |
| 24 |
* \version $Id$ |
| 25 |
*/ |
| 26 |
|
| 27 |
#ifndef INCLUDED_serv_h |
| 28 |
#define INCLUDED_serv_h |
| 29 |
|
| 30 |
|
| 31 |
struct MaskItem; |
| 32 |
|
| 33 |
/* |
| 34 |
* number of seconds to wait after server starts up, before |
| 35 |
* starting try_connections() |
| 36 |
* TOO SOON and you can nick collide like crazy. |
| 37 |
*/ |
| 38 |
#define STARTUP_CONNECTIONS_TIME 60 |
| 39 |
|
| 40 |
struct Client; |
| 41 |
struct MaskItem; |
| 42 |
struct Channel; |
| 43 |
|
| 44 |
/* Capabilities */ |
| 45 |
struct Capability |
| 46 |
{ |
| 47 |
dlink_node node; |
| 48 |
char *name; /* name of capability */ |
| 49 |
unsigned int cap; /* mask value */ |
| 50 |
}; |
| 51 |
|
| 52 |
#define CAP_CAP 0x00000001 /* received a CAP to begin with */ |
| 53 |
#define CAP_QS 0x00000002 /* Can handle quit storm removal */ |
| 54 |
#define CAP_EX 0x00000004 /* Can do channel +e exemptions */ |
| 55 |
#define CAP_IE 0x00000008 /* Can do invite exceptions */ |
| 56 |
#define CAP_EOB 0x00000010 /* Can do EOB message */ |
| 57 |
#define CAP_KLN 0x00000020 /* Can do KLINE message */ |
| 58 |
#define CAP_GLN 0x00000040 /* Can do GLINE message */ |
| 59 |
#define CAP_TS6 0x00000080 /* Can do TS6 */ |
| 60 |
#define CAP_KNOCK 0x00000100 /* supports KNOCK */ |
| 61 |
#define CAP_UNKLN 0x00000200 /* Can do UNKLINE message */ |
| 62 |
#define CAP_CLUSTER 0x00000400 /* supports server clustering */ |
| 63 |
#define CAP_ENCAP 0x00000800 /* supports ENCAP message */ |
| 64 |
#define CAP_HOPS 0x00001000 /* supports HALFOPS */ |
| 65 |
#define CAP_TBURST 0x00002000 /* supports TBURST */ |
| 66 |
#define CAP_SVS 0x00004000 /* supports services */ |
| 67 |
#define CAP_DLN 0x00008000 /* Can do DLINE message */ |
| 68 |
#define CAP_UNDLN 0x00010000 /* Can do UNDLINE message */ |
| 69 |
#define CAP_CHW 0x00020000 /* Can do channel wall @# */ |
| 70 |
|
| 71 |
/* |
| 72 |
* Capability macros. |
| 73 |
*/ |
| 74 |
#define IsCapable(x, cap) ((x)->connection->caps & (cap)) |
| 75 |
#define SetCapable(x, cap) ((x)->connection->caps |= (cap)) |
| 76 |
#define ClearCap(x, cap) ((x)->connection->caps &= ~(cap)) |
| 77 |
|
| 78 |
|
| 79 |
/* |
| 80 |
* return values for hunt_server() |
| 81 |
*/ |
| 82 |
enum |
| 83 |
{ |
| 84 |
HUNTED_NOSUCH = -1, /* If the hunted server is not found */ |
| 85 |
HUNTED_ISME = 0, /* If this server should execute the command */ |
| 86 |
HUNTED_PASS = 1 /* If message passed onwards successfully */ |
| 87 |
}; |
| 88 |
|
| 89 |
extern int valid_servname(const char *); |
| 90 |
extern int check_server(const char *, struct Client *); |
| 91 |
extern int hunt_server(struct Client *, const char *, const int, const int, char *[]); |
| 92 |
extern void add_capability(const char *, int, int); |
| 93 |
extern int delete_capability(const char *); |
| 94 |
extern int unsigned find_capability(const char *); |
| 95 |
extern void send_capabilities(struct Client *, int); |
| 96 |
extern void write_links_file(void *); |
| 97 |
extern void read_links_file(void); |
| 98 |
extern const char *show_capabilities(const struct Client *); |
| 99 |
extern void try_connections(void *); |
| 100 |
extern int serv_connect(struct MaskItem *, struct Client *); |
| 101 |
extern struct Client *find_servconn_in_progress(const char *); |
| 102 |
extern struct Server *make_server(struct Client *); |
| 103 |
#endif /* INCLUDED_server.h */ |