Author: Bleep <helveytw@home.com>
[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
25 /*
26  * TCP window sizes
27  * Set server window to a large value for fat pipes,
28  * set client to a smaller size to allow TCP flow control
29  * to reduce flooding
30  */
31 #define SERVER_TCP_WINDOW 61440
32 #define CLIENT_TCP_WINDOW 2048
33
34 extern void report_error(const char* text, const char* who, int err);
35 /*
36  * text for report_error
37  */
38 extern const char* const BIND_ERROR_MSG;
39 extern const char* const LISTEN_ERROR_MSG;
40 extern const char* const NONB_ERROR_MSG;
41 extern const char* const REUSEADDR_ERROR_MSG;
42 extern const char* const SOCKET_ERROR_MSG;
43 extern const char* const CONNLIMIT_ERROR_MSG;
44 extern const char* const ACCEPT_ERROR_MSG;
45 extern const char* const PEERNAME_ERROR_MSG;
46 extern const char* const POLL_ERROR_MSG;
47 extern const char* const SELECT_ERROR_MSG;
48 extern const char* const CONNECT_ERROR_MSG;
49 extern const char* const SETBUFS_ERROR_MSG;
50
51
52 extern int            HighestFd;
53 extern struct Client* LocalClientArray[MAXCONNECTIONS];
54 extern int            OpenFileDescriptorCount;
55
56 extern struct sockaddr_in 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, const char *str, unsigned int len);
82 extern int connect_server(struct ConfItem* aconf, struct Client* by,
83                           struct DNSReply* reply);
84 extern void release_dns_reply(struct Client* cptr);
85 extern int  net_close_unregistered_connections(struct Client* source);
86 extern void close_connection(struct Client *cptr);
87 extern void add_connection(struct Listener* listener, int fd);
88 extern int  read_message(time_t delay);
89 extern void init_server_identity(void);
90 extern void close_connections(int close_stderr);
91 extern int  init_connection_limits(void);
92 extern void set_virtual_host(struct in_addr addr);
93
94 #endif /* INCLUDED_s_bsd_h */