8ba11e799dda4955e7176548ec591b062adf3958
[ircu2.10.12-pk.git] / include / listener.h
1 /* - Internet Relay Chat, include/listener.h
2  *   Copyright (C) 1999 Thomas Helvey <tomh@inxpress.net>
3  *
4  *   This program is free software; you can redistribute it and/or modify
5  *   it under the terms of the GNU General Public License as published by
6  *   the Free Software Foundation; either version 1, or (at your option)
7  *   any later version.
8  *
9  *   This program is distributed in the hope that it will be useful,
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *   GNU General Public License for more details.
13  *
14  *   You should have received a copy of the GNU General Public License
15  *   along with this program; if not, write to the Free Software
16  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  *
18  *
19  * $Id$
20  */
21 #ifndef INCLUDED_listener_h
22 #define INCLUDED_listener_h
23 #ifndef INCLUDED_ircd_defs_h
24 #include "ircd_defs.h"       /* HOSTLEN */
25 #endif
26 #ifndef INCLUDED_sys_types_h
27 #include <sys/types.h>       /* size_t, broken BSD system headers */
28 #define INCLUDED_sys_types_h
29 #endif
30 #ifndef INCLUDED_netinet_in_h
31 #include <netinet/in.h>      /* in_addr */
32 #define INCLUDED_netinet_in_h
33 #endif
34
35 struct Client;
36
37 struct Listener {
38   struct Listener* next;               /* list node pointer */
39   int              fd;                 /* file descriptor */
40   int              port;               /* listener IP port */
41   int              ref_count;          /* number of connection references */
42   unsigned char    active;             /* current state of listener */
43   unsigned char    hidden;             /* hidden in stats output for clients */
44   unsigned char    server;             /* 1 if port is a server listener */
45   int              index;              /* index into poll array */
46   time_t           last_accept;        /* last time listener accepted */
47   struct in_addr   addr;               /* virtual address or INADDR_ANY */
48   struct in_addr   mask;               /* listener hostmask */
49 };
50
51 extern struct Listener* ListenerPollList; /* GLOBAL - listener list */
52
53 extern void        accept_connection(struct Listener* listener);
54 extern void        add_listener(int port, const char* vaddr_ip, 
55                                 const char* mask, int is_server, 
56                                 int is_hidden);
57 extern void        close_listener(struct Listener* listener);
58 extern void        close_listeners(void);
59 extern void        count_listener_memory(int* count_out, size_t* size_out);
60 extern const char* get_listener_name(const struct Listener* listener);
61 extern void        mark_listeners_closing(void);
62 extern void        show_ports(struct Client* client, int show_hidden,
63                               int port, int count);
64 extern void        release_listener(struct Listener* listener);
65
66 #endif /* INCLUDED_listener_h */
67