| 1 |
/* |
| 2 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
| 3 |
* |
| 4 |
* Copyright (c) 1997-2014 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
| 19 |
* USA |
| 20 |
*/ |
| 21 |
|
| 22 |
/*! \file s_bsd.h |
| 23 |
* \brief A header for the network subsystem. |
| 24 |
* \version $Id$ |
| 25 |
*/ |
| 26 |
|
| 27 |
#ifndef INCLUDED_s_bsd_h |
| 28 |
#define INCLUDED_s_bsd_h |
| 29 |
|
| 30 |
#include "config.h" |
| 31 |
#include "fdlist.h" |
| 32 |
|
| 33 |
/* Type of IO */ |
| 34 |
#define COMM_SELECT_READ 1 |
| 35 |
#define COMM_SELECT_WRITE 2 |
| 36 |
|
| 37 |
/* How long can comm_select() wait for network events [milliseconds] */ |
| 38 |
#define SELECT_DELAY 500 |
| 39 |
|
| 40 |
struct Client; |
| 41 |
struct MaskItem; |
| 42 |
struct Listener; |
| 43 |
|
| 44 |
extern void add_connection(struct Listener *, struct irc_ssaddr *, int); |
| 45 |
extern void close_connection(struct Client *); |
| 46 |
extern void report_error(int, const char *, const char *, int); |
| 47 |
|
| 48 |
extern int get_sockerr(int); |
| 49 |
extern int ignoreErrno(int); |
| 50 |
|
| 51 |
extern void comm_settimeout(fde_t *, time_t, PF *, void *); |
| 52 |
extern void comm_setflush(fde_t *, time_t, PF *, void *); |
| 53 |
extern void comm_checktimeouts(void *); |
| 54 |
extern void comm_connect_tcp(fde_t *, const char *, unsigned short, |
| 55 |
struct sockaddr *, int, CNCB *, void *, int, int); |
| 56 |
extern const char *comm_errstr(int status); |
| 57 |
extern int comm_open(fde_t *F, int family, int sock_type, int proto, |
| 58 |
const char *note); |
| 59 |
extern int comm_accept(struct Listener *, struct irc_ssaddr *pn); |
| 60 |
|
| 61 |
/* These must be defined in the network IO loop code of your choice */ |
| 62 |
extern void init_netio(void); |
| 63 |
extern void comm_setselect(fde_t *, unsigned int, PF *, void *, time_t); |
| 64 |
extern int read_message (time_t, unsigned char); |
| 65 |
extern void comm_select(void); |
| 66 |
extern void check_can_use_v6(void); |
| 67 |
#ifdef IPV6 |
| 68 |
extern void remove_ipv6_mapping(struct irc_ssaddr *); |
| 69 |
#endif |
| 70 |
#endif /* INCLUDED_s_bsd_h */ |