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