ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/include/s_bsd.h
Revision: 6951
Committed: Tue Dec 15 19:11:07 2015 UTC (9 years, 8 months ago) by michael
Content type: text/x-chdr
File size: 2362 byte(s)
Log Message:
- s_bsd.h, s_bsd.c:comm_connect_tcp(): change the 'timeout' parameter to a time_t to match up with the other comm_* functions

File Contents

# User Rev Content
1 adx 30 /*
2 michael 2865 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 adx 30 *
4 michael 5347 * Copyright (c) 1997-2015 ircd-hybrid development team
5 adx 30 *
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 michael 4565 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 adx 30 * USA
20     */
21    
22 michael 2865 /*! \file s_bsd.h
23     * \brief A header for the network subsystem.
24     * \version $Id$
25     */
26    
27 adx 30 #ifndef INCLUDED_s_bsd_h
28     #define INCLUDED_s_bsd_h
29    
30 michael 2865 #include "config.h"
31 adx 30 #include "fdlist.h"
32    
33     /* Type of IO */
34 michael 6323 enum
35     {
36     COMM_SELECT_READ = 1,
37     COMM_SELECT_WRITE = 2
38     };
39 adx 30
40     /* How long can comm_select() wait for network events [milliseconds] */
41 michael 6323 enum { SELECT_DELAY = 500 };
42 adx 30
43     struct Client;
44     struct Listener;
45    
46 michael 549 extern void add_connection(struct Listener *, struct irc_ssaddr *, int);
47 adx 30 extern void close_connection(struct Client *);
48     extern void report_error(int, const char *, const char *, int);
49    
50     extern int get_sockerr(int);
51     extern int ignoreErrno(int);
52    
53 michael 4461 extern void comm_settimeout(fde_t *, time_t, void (*)(fde_t *, void *), void *);
54     extern void comm_setflush(fde_t *, time_t, void (*)(fde_t *, void *), void *);
55 adx 30 extern void comm_checktimeouts(void *);
56 michael 4464 extern void comm_connect_tcp(fde_t *, const char *, unsigned short, struct sockaddr *, int,
57 michael 6951 void (struct _fde *, int, void *), void *, int, time_t);
58 michael 6323 extern const char *comm_errstr(int);
59     extern int comm_open(fde_t *, int, int, int, const char *);
60     extern int comm_accept(struct Listener *, struct irc_ssaddr *);
61 adx 30
62     /* These must be defined in the network IO loop code of your choice */
63 michael 950 extern void init_netio(void);
64 michael 4461 extern void comm_setselect(fde_t *, unsigned int, void (*)(fde_t *, void *), void *, time_t);
65 adx 30 extern void comm_select(void);
66     extern void remove_ipv6_mapping(struct irc_ssaddr *);
67     #endif /* INCLUDED_s_bsd_h */

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision