aboutsummaryrefslogtreecommitdiff
path: root/src/beaker_globals.c
blob: 1f81a5e9bc77915103539dbe35de2cda74ac4bfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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];

Locale *locales = NULL;

int locale_count = 0;

int locale_capacity = 0;