source: Main/trunk/Server/tw_config.h@ 91

Last change on this file since 91 was 81, checked in by Nishi, on Sep 19, 2024 at 9:40:33 PM

add haiku support

  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1/* $Id: tw_config.h 81 2024-09-19 12:40:33Z nishi $ */
2
3#ifndef __TW_CONFIG_H__
4#define __TW_CONFIG_H__
5
6#include "tw_http.h"
7
8#include <stdint.h>
9#include <stdbool.h>
10
11#ifdef __MINGW32__
12#include <winsock2.h>
13#define NO_IPV6
14#else
15#include <netinet/in.h>
16#ifdef __HAIKU__
17#define NO_IPV6
18#endif
19#endif
20
21#ifdef NO_IPV6
22#define SOCKADDR struct sockaddr_in
23#else
24#define SOCKADDR struct sockaddr_in6
25#endif
26
27#define MAX_PORTS 1024
28#define MAX_VHOSTS 1024
29#define MAX_MODULES 1024
30#define MAX_DIRS 1024
31#define MAX_MIME 1024
32#define MAX_ICON 1024
33#define MAX_INDEX 1024
34#define MAX_README 8
35
36enum TW_DIR_TYPE {
37 TW_DIR_ALLOW = 0,
38 TW_DIR_DENY
39};
40
41struct tw_dir_entry {
42 char* name;
43 char* dir;
44 int type;
45};
46
47struct tw_mime_entry {
48 char* ext;
49 char* mime;
50};
51
52struct tw_icon_entry {
53 char* mime;
54 char* icon;
55};
56
57struct tw_config_entry {
58 char* name;
59 int port;
60 char* sslkey;
61 char* sslcert;
62 char* root;
63 struct tw_dir_entry dirs[MAX_DIRS];
64 int dir_count;
65 struct tw_mime_entry mimes[MAX_DIRS];
66 int mime_count;
67 struct tw_icon_entry icons[MAX_DIRS];
68 int icon_count;
69 char* indexes[MAX_INDEX];
70 int index_count;
71 char* readmes[MAX_README];
72 int readme_count;
73};
74
75struct tw_config {
76 uint64_t ports[MAX_PORTS + 1]; /* If port & (1 << 32) is non-zero, it is SSL */
77 char hostname[1025];
78 struct tw_config_entry root;
79 struct tw_config_entry vhosts[MAX_VHOSTS];
80 void* modules[MAX_MODULES];
81 int module_count;
82 int vhost_count;
83 char* server_root;
84 char* extension;
85};
86
87void tw_config_init(void);
88int tw_config_read(const char* path);
89struct tw_config_entry* tw_vhost_match(const char* name, int port);
90bool tw_permission_allowed(const char* path, SOCKADDR addr, struct tw_http_request req, struct tw_config_entry* vhost);
91
92#endif
Note: See TracBrowser for help on using the repository browser.