]> jfr.im git - solanum.git/blame - include/reject.h
m_starttls: advertise tls cap only if SSL is possible
[solanum.git] / include / reject.h
CommitLineData
54ac8b60
VY
1/*
2 * ircd-ratbox: A slightly useful ircd
3 * reject.h: header to a file which rejects users with prejudice
4 *
5 * Copyright (C) 2003 Aaron Sethman <androsyn@ratbox.org>
43946961 6 * Copyright (C) 2003-2005 ircd-ratbox development team
54ac8b60
VY
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
43946961 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
54ac8b60
VY
21 * USA
22 *
54ac8b60
VY
23 */
24#ifndef INCLUDED_reject_h
25#define INCLUDED_reject_h
26
27/* amount of time to delay a rejected clients exit */
28#define DELAYED_EXIT_TIME 10
29
54ac8b60 30void init_reject(void);
642c73dd 31int check_reject(rb_fde_t *F, struct sockaddr *addr, bool ssl);
a9536f75 32void add_reject(struct Client *, const char *mask1, const char *mask2, struct ConfItem *aconf, const char *reason);
83235e9e 33int is_reject_ip(struct sockaddr *addr);
54ac8b60
VY
34void flush_reject(void);
35int remove_reject_ip(const char *ip);
36int remove_reject_mask(const char *mask1, const char *mask2);
43946961
JT
37unsigned long delay_exit_length(void);
38
39int throttle_add(struct sockaddr *addr);
83235e9e 40int is_throttle_ip(struct sockaddr *addr);
ae09cb7d 41unsigned long throttle_size(void);
995f300e 42void flush_throttle(void);
54ac8b60 43
54ac8b60
VY
44
45#endif
46