blob: 3488338b7cb018cc0345bb057f25f9c2b70d6f05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "beaker_globals.h"
RouteHandler handlers[MAX_HANDLERS];
int handler_count = 0;
__thread int current_client_socket = -1;
__thread Cookie cookies_to_set[MAX_COOKIES];
__thread int cookies_to_set_count = 0;
__thread char current_request_buffer[BUFFER_SIZE];
__thread RequestInfo current_request_info = {0};
Locale *locales = NULL;
int locale_count = 0;
int locale_capacity = 0;
|