69822bbd0892c40d9d1cec94eda337dde4c4a13b
[ircu2.10.12-pk.git] / include / s_bsd.h
1 /*
2  * s_bsd.h
3  *
4  * $Id$
5  */
6 #ifndef INCLUDED_s_bsd_h
7 #define INCLUDED_s_bsd_h
8 #ifndef INCLUDED_sys_types_h
9 #include <sys/types.h>         /* size_t, time_t */
10 #define INCLUDED_sys_types_h
11 #endif
12 #ifndef INCLUDED_netinet_in_h
13 #include <netinet/in.h>
14 #define INCLUDED_netinet_in_h
15 #endif
16
17 struct Client;
18 struct ConfItem;
19 struct Listener;
20 struct MsgQ;
21 struct irc_in_addr;
22
23 /*
24  * TCP window sizes
25  * Set server window to a large value for fat pipes,
26  * set client to a smaller size to allow TCP flow control
27  * to reduce flooding
28  */
29 #define SERVER_TCP_WINDOW 61440
30 #define CLIENT_TCP_WINDOW 2048
31
32 extern void report_error(const char* text, const char* who, int err);
33 /*
34  * text for report_error
35  */
36 extern const char* const BIND_ERROR_MSG;
37 extern const char* const LISTEN_ERROR_MSG;
38 extern const char* const NONB_ERROR_MSG;
39 extern const char* const REUSEADDR_ERROR_MSG;
40 extern const char* const SOCKET_ERROR_MSG;
41 extern const char* const CONNLIMIT_ERROR_MSG;
42 extern const char* const ACCEPT_ERROR_MSG;
43 extern const char* const PEERNAME_ERROR_MSG;
44 extern const char* const POLL_ERROR_MSG;
45 extern const char* const SELECT_ERROR_MSG;
46 extern const char* const CONNECT_ERROR_MSG;
47 extern const char* const SETBUFS_ERROR_MSG;
48 extern const char* const TOS_ERROR_MSG;
49 extern const char* const REGISTER_ERROR_MSG;
50
51
52 extern int            HighestFd;
53 extern struct Client* LocalClientArray[MAXCONNECTIONS];
54 extern int            OpenFileDescriptorCount;
55
56 extern struct irc_sockaddr VirtualHost;
57
58 enum PollType {
59   PT_NONE,
60   PT_READ,
61   PT_WRITE
62 };
63
64 struct Pollable;
65
66 typedef int (*PollReadyFn)(struct Pollable*);
67
68 struct Pollable {
69   struct Pollable* next;
70   struct Pollable* prev;
71   int              fd;
72   int              index;
73   int              state;
74   PollReadyFn      r_handler;
75   PollReadyFn      w_handler;
76 };
77
78 /*
79  * Proto types
80  */
81 extern unsigned int deliver_it(struct Client *cptr, struct MsgQ *buf);
82 extern int connect_server(struct ConfItem* aconf, struct Client* by);
83 extern void release_dns_reply(struct Client* cptr);
84 extern int  net_close_unregistered_connections(struct Client* source);
85 extern void close_connection(struct Client *cptr);
86 extern void add_connection(struct Listener* listener, int fd);
87 extern int  read_message(time_t delay);
88 extern void init_server_identity(void);
89 extern void close_connections(int close_stderr);
90 extern int  init_connection_limits(void);
91 extern void set_virtual_host(const struct irc_in_addr *addr);
92 extern void update_write(struct Client* cptr);
93
94 #endif /* INCLUDED_s_bsd_h */