/usr/include/ircd-hybrid-8/conf_class.h is in hybrid-dev 1:8.1.13.dfsg.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | /*
* ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
*
* Copyright (C) 2002 by the past and present ircd coders, and others.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
/*! \file
* \brief Configuration managment for class{} blocks
* \version $Id: conf_class.h 1785 2013-01-26 22:40:55Z michael $
*/
#ifndef INCLUDED_conf_class_h
#define INCLUDED_conf_class_h
#define CLASS_FLAGS_FAKE_IDLE 0x01
#define CLASS_FLAGS_RANDOM_IDLE 0x02
#define CLASS_FLAGS_HIDE_IDLE_FROM_OPERS 0x04
struct ClassItem
{
char *name;
dlink_node node;
dlink_list list_ipv4; /* base of per cidr ipv4 client link list */
dlink_list list_ipv6; /* base of per cidr ipv6 client link list */
unsigned int ref_count;
unsigned int max_sendq;
unsigned int max_recvq;
unsigned int con_freq;
unsigned int ping_freq;
unsigned int max_total;
unsigned int max_local;
unsigned int max_global;
unsigned int max_ident;
unsigned int max_perip;
unsigned int min_idle;
unsigned int max_idle;
unsigned int cidr_bitlen_ipv4;
unsigned int cidr_bitlen_ipv6;
unsigned int number_per_cidr;
unsigned int flags;
unsigned int active;
};
/* address of default class conf */
extern struct ClassItem *class_default;
extern struct ClassItem *class_make(void);
extern struct ClassItem *get_class_ptr(const dlink_list *const);
extern const dlink_list *class_get_list(void);
extern void class_free(struct ClassItem *);
extern void class_init(void);
extern const char *get_client_class(const dlink_list *const);
extern unsigned int get_client_ping(const dlink_list *const);
extern unsigned int get_sendq(const dlink_list *const);
extern unsigned int get_recvq(const dlink_list *const);
extern struct ClassItem *class_find(const char *, int);
extern void class_mark_for_deletion(void);
extern void class_delete_marked(void);
extern void destroy_cidr_class(struct ClassItem *);
extern int cidr_limit_reached(int, struct irc_ssaddr *, struct ClassItem *);
extern void remove_from_cidr_check(struct irc_ssaddr *, struct ClassItem *);
extern void rebuild_cidr_list(struct ClassItem *);
#endif
|