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