/* - Internet Relay Chat, include/listener.h * Copyright (C) 1999 Thomas Helvey * * 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 1, 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., 675 Mass Ave, Cambridge, MA 02139, USA. * * * $Id: listener.h,v 1.2.2.1 2002/07/14 01:22:04 kev Exp $ */ #ifndef INCLUDED_listener_h #define INCLUDED_listener_h #ifndef INCLUDED_ircd_defs_h #include "ircd_defs.h" /* HOSTLEN */ #endif #ifndef INCLUDED_ircd_events_h #include "ircd_events.h" #endif #ifndef INCLUDED_sys_types_h #include /* size_t, broken BSD system headers */ #define INCLUDED_sys_types_h #endif #ifndef INCLUDED_netinet_in_h #include /* in_addr */ #define INCLUDED_netinet_in_h #endif struct Client; struct StatDesc; struct Listener { struct Listener* next; /* list node pointer */ int fd; /* file descriptor */ int port; /* listener IP port */ int ref_count; /* number of connection references */ unsigned char active; /* current state of listener */ unsigned char hidden; /* hidden in stats output for clients */ unsigned char server; /* 1 if port is a server listener */ int index; /* index into poll array */ time_t last_accept; /* last time listener accepted */ struct in_addr addr; /* virtual address or INADDR_ANY */ struct in_addr mask; /* listener hostmask */ struct Socket socket; /* describe socket to event system */ }; extern struct Listener* ListenerPollList; /* GLOBAL - listener list */ extern void add_listener(int port, const char* vaddr_ip, const char* mask, int is_server, int is_hidden); extern void close_listener(struct Listener* listener); extern void close_listeners(void); extern void count_listener_memory(int* count_out, size_t* size_out); extern const char* get_listener_name(const struct Listener* listener); extern void mark_listeners_closing(void); extern void show_ports(struct Client* client, struct StatDesc* sd, int stat, char* param); extern void release_listener(struct Listener* listener); #endif /* INCLUDED_listener_h */