2023-12-13 18:59:11 -05:00
|
|
|
#include "http.h"
|
|
|
|
|
|
|
|
#include "log.h"
|
|
|
|
#include "mem.h"
|
2023-12-20 18:58:28 -05:00
|
|
|
#include "util.js.h"
|
2023-12-13 18:59:11 -05:00
|
|
|
|
|
|
|
#include "picohttpparser.h"
|
|
|
|
#include "uv.h"
|
|
|
|
|
2023-12-17 12:44:54 -05:00
|
|
|
#include <assert.h>
|
2023-12-20 18:58:28 -05:00
|
|
|
#include <stdlib.h>
|
2023-12-13 18:59:11 -05:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#if !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(_WIN32)
|
|
|
|
#include <alloca.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct _tf_http_connection_t
|
|
|
|
{
|
|
|
|
tf_http_t* http;
|
|
|
|
uv_tcp_t tcp;
|
|
|
|
|
2023-12-20 18:58:28 -05:00
|
|
|
const char* method;
|
|
|
|
const char* path;
|
2023-12-20 19:13:03 -05:00
|
|
|
int minor_version;
|
2023-12-20 18:58:28 -05:00
|
|
|
|
|
|
|
char headers_buffer[8192];
|
|
|
|
size_t headers_buffer_length;
|
|
|
|
int parsed_length;
|
|
|
|
|
2023-12-13 18:59:11 -05:00
|
|
|
char buffer[8192];
|
|
|
|
size_t buffer_length;
|
2023-12-20 18:58:28 -05:00
|
|
|
|
|
|
|
struct phr_header headers[32];
|
|
|
|
int headers_length;
|
|
|
|
bool headers_done;
|
2023-12-13 18:59:11 -05:00
|
|
|
|
|
|
|
tf_http_callback_t* callback;
|
|
|
|
void* user_data;
|
2023-12-20 18:58:28 -05:00
|
|
|
|
|
|
|
void* body;
|
|
|
|
size_t body_length;
|
|
|
|
size_t content_length;
|
2023-12-20 19:13:03 -05:00
|
|
|
bool connection_close;
|
2023-12-13 18:59:11 -05:00
|
|
|
} tf_http_connection_t;
|
|
|
|
|
|
|
|
typedef struct _tf_http_handler_t
|
|
|
|
{
|
|
|
|
const char* pattern;
|
|
|
|
tf_http_callback_t* callback;
|
|
|
|
void* user_data;
|
|
|
|
} tf_http_handler_t;
|
|
|
|
|
|
|
|
typedef struct _tf_http_t
|
|
|
|
{
|
|
|
|
uv_tcp_t** listeners;
|
|
|
|
int listeners_count;
|
|
|
|
|
|
|
|
tf_http_connection_t** connections;
|
|
|
|
int connections_count;
|
|
|
|
|
|
|
|
tf_http_handler_t* handlers;
|
|
|
|
int handlers_count;
|
|
|
|
|
2023-12-18 12:51:15 -05:00
|
|
|
int pending_closes;
|
2023-12-13 18:59:11 -05:00
|
|
|
uv_loop_t* loop;
|
|
|
|
} tf_http_t;
|
|
|
|
|
2023-12-18 12:51:15 -05:00
|
|
|
static void _http_connection_destroy(tf_http_connection_t* connection);
|
2023-12-20 18:58:28 -05:00
|
|
|
static const char* _http_status_text(int status);
|
2023-12-18 12:51:15 -05:00
|
|
|
|
2023-12-13 18:59:11 -05:00
|
|
|
tf_http_t* tf_http_create(uv_loop_t* loop)
|
|
|
|
{
|
|
|
|
tf_http_t* http = tf_malloc(sizeof(tf_http_t));
|
|
|
|
*http = (tf_http_t)
|
|
|
|
{
|
|
|
|
.loop = loop,
|
|
|
|
};
|
|
|
|
return http;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _http_allocate_buffer(uv_handle_t* handle, size_t suggestedSize, uv_buf_t* buf)
|
|
|
|
{
|
|
|
|
tf_http_connection_t* connection = handle->data;
|
2023-12-20 18:58:28 -05:00
|
|
|
if (!connection->headers_done)
|
|
|
|
{
|
|
|
|
*buf = uv_buf_init(connection->headers_buffer + connection->headers_buffer_length, sizeof(connection->headers_buffer) - connection->headers_buffer_length);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*buf = uv_buf_init(connection->buffer + connection->buffer_length, sizeof(connection->buffer) - connection->buffer_length);
|
|
|
|
}
|
2023-12-13 18:59:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bool _http_find_handler(tf_http_t* http, const char* path, tf_http_callback_t** out_callback, void** out_user_data)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < http->handlers_count; i++)
|
|
|
|
{
|
2023-12-20 20:27:57 -05:00
|
|
|
if (!http->handlers[i].pattern ||
|
|
|
|
strcmp(path, http->handlers[i].pattern) == 0 ||
|
|
|
|
(strncmp(path, http->handlers[i].pattern, strlen(http->handlers[i].pattern)) == 0 && path[strlen(http->handlers[i].pattern)] == '/'))
|
2023-12-13 18:59:11 -05:00
|
|
|
{
|
|
|
|
*out_callback = http->handlers[i].callback;
|
|
|
|
*out_user_data = http->handlers[i].user_data;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-12-13 20:59:23 -05:00
|
|
|
static void _http_on_write(uv_write_t* write, int status)
|
|
|
|
{
|
|
|
|
tf_free(write);
|
|
|
|
}
|
|
|
|
|
2023-12-18 12:51:15 -05:00
|
|
|
static void _http_connection_on_close(uv_handle_t* handle)
|
|
|
|
{
|
|
|
|
tf_http_connection_t* connection = handle->data;
|
|
|
|
handle->data = NULL;
|
|
|
|
_http_connection_destroy(connection);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _http_connection_destroy(tf_http_connection_t* connection)
|
|
|
|
{
|
|
|
|
if (connection->tcp.data)
|
|
|
|
{
|
|
|
|
uv_close((uv_handle_t*)&connection->tcp, _http_connection_on_close);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tf_http_t* http = connection->http;
|
|
|
|
for (int i = 0; i < http->connections_count; i++)
|
|
|
|
{
|
|
|
|
if (http->connections[i] == connection)
|
|
|
|
{
|
|
|
|
http->connections[i] = http->connections[--http->connections_count];
|
|
|
|
}
|
|
|
|
}
|
2023-12-20 18:58:28 -05:00
|
|
|
if (connection->body)
|
|
|
|
{
|
|
|
|
tf_free(connection->body);
|
|
|
|
connection->body = NULL;
|
|
|
|
}
|
2023-12-18 12:51:15 -05:00
|
|
|
tf_free(connection);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-20 18:58:28 -05:00
|
|
|
static void _http_builtin_404_handler(tf_http_request_t* request)
|
|
|
|
{
|
|
|
|
const char* k_payload = _http_status_text(404);
|
|
|
|
tf_http_respond(request, 404, NULL, 0, k_payload, strlen(k_payload));
|
|
|
|
}
|
|
|
|
|
2023-12-20 19:13:03 -05:00
|
|
|
static void _http_reset_connection(tf_http_connection_t* connection)
|
|
|
|
{
|
|
|
|
connection->headers_done = false;
|
|
|
|
connection->headers_buffer_length = 0;
|
|
|
|
connection->body_length = 0;
|
|
|
|
connection->content_length = 0;
|
|
|
|
}
|
|
|
|
|
2023-12-20 18:58:28 -05:00
|
|
|
static void _http_add_body_bytes(tf_http_connection_t* connection, const void* data, size_t size)
|
|
|
|
{
|
|
|
|
size_t fit = tf_min(connection->content_length - connection->body_length, size);
|
|
|
|
if (fit > 0)
|
|
|
|
{
|
|
|
|
memcpy((char*)connection->body + connection->body_length, data, fit);
|
|
|
|
connection->body_length += fit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (connection->body_length == connection->content_length)
|
|
|
|
{
|
|
|
|
tf_http_request_t request =
|
|
|
|
{
|
|
|
|
.connection = connection,
|
|
|
|
.phase = k_http_callback_phase_headers_received,
|
|
|
|
.method = connection->method,
|
|
|
|
.path = connection->path,
|
|
|
|
.headers = connection->headers,
|
|
|
|
.headers_count = connection->headers_length,
|
|
|
|
.user_data = connection->user_data,
|
|
|
|
};
|
|
|
|
connection->callback(&request);
|
2023-12-20 19:13:03 -05:00
|
|
|
_http_reset_connection(connection);
|
2023-12-20 18:58:28 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _http_on_read(uv_stream_t* stream, ssize_t read_size, const uv_buf_t* buffer)
|
2023-12-13 18:59:11 -05:00
|
|
|
{
|
|
|
|
tf_http_connection_t* connection = stream->data;
|
|
|
|
if (read_size > 0)
|
|
|
|
{
|
2023-12-20 18:58:28 -05:00
|
|
|
if (!connection->headers_done)
|
2023-12-13 18:59:11 -05:00
|
|
|
{
|
2023-12-20 18:58:28 -05:00
|
|
|
connection->headers_buffer_length += read_size;
|
|
|
|
|
|
|
|
const char* method = NULL;
|
|
|
|
size_t method_length = 0;
|
|
|
|
const char* path = NULL;
|
|
|
|
size_t path_length = 0;
|
|
|
|
size_t header_count = sizeof(connection->headers) / sizeof(*connection->headers);
|
|
|
|
|
2023-12-20 19:13:03 -05:00
|
|
|
int parse_result = phr_parse_request(connection->headers_buffer, connection->headers_buffer_length, &method, &method_length, &path, &path_length, &connection->minor_version, connection->headers, &header_count, connection->parsed_length);
|
2023-12-20 18:58:28 -05:00
|
|
|
connection->parsed_length = connection->headers_buffer_length;
|
|
|
|
if (parse_result > 0)
|
2023-12-13 18:59:11 -05:00
|
|
|
{
|
2023-12-20 18:58:28 -05:00
|
|
|
connection->headers_done = true;
|
|
|
|
connection->method = method;
|
|
|
|
((char*)connection->method)[method_length] = '\0';
|
|
|
|
connection->path = path;
|
|
|
|
((char*)connection->path)[path_length] = '\0';
|
2023-12-13 18:59:11 -05:00
|
|
|
|
2023-12-20 19:13:03 -05:00
|
|
|
connection->connection_close = connection->minor_version == 0;
|
|
|
|
|
2023-12-20 18:58:28 -05:00
|
|
|
for (int i = 0; i < (int)header_count; i++)
|
|
|
|
{
|
2023-12-20 19:13:03 -05:00
|
|
|
((char*)connection->headers[i].name)[connection->headers[i].name_len] = '\0';
|
|
|
|
((char*)connection->headers[i].value)[connection->headers[i].value_len] = '\0';
|
|
|
|
if (strcasecmp(connection->headers[i].name, "content-length") == 0)
|
2023-12-20 18:58:28 -05:00
|
|
|
{
|
|
|
|
connection->content_length = strtoull(connection->headers[i].value, NULL, 10);
|
|
|
|
}
|
2023-12-20 19:13:03 -05:00
|
|
|
else if (strcasecmp(connection->headers[i].name, "connection") == 0)
|
|
|
|
{
|
|
|
|
if (strcasecmp(connection->headers[i].value, "close") == 0)
|
|
|
|
{
|
|
|
|
connection->connection_close = true;
|
|
|
|
}
|
|
|
|
}
|
2023-12-20 18:58:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (connection->content_length)
|
|
|
|
{
|
|
|
|
connection->body = tf_malloc(connection->content_length);
|
|
|
|
}
|
2023-12-13 18:59:11 -05:00
|
|
|
|
2023-12-20 18:58:28 -05:00
|
|
|
if (!_http_find_handler(connection->http, connection->path, &connection->callback, &connection->user_data) || !connection->callback)
|
2023-12-13 18:59:11 -05:00
|
|
|
{
|
2023-12-20 18:58:28 -05:00
|
|
|
connection->callback = _http_builtin_404_handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
_http_add_body_bytes(connection, connection->headers_buffer + parse_result, connection->headers_buffer_length - parse_result);
|
|
|
|
}
|
2023-12-20 19:00:15 -05:00
|
|
|
else if (parse_result == -2)
|
|
|
|
{
|
|
|
|
/* Incomplete. Will try again next time. */
|
|
|
|
}
|
2023-12-20 18:58:28 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
tf_printf("phr_parse_request: %d\n", parse_result);
|
2023-12-20 19:00:15 -05:00
|
|
|
_http_connection_destroy(connection);
|
2023-12-13 18:59:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-12-20 18:58:28 -05:00
|
|
|
connection->buffer_length += read_size;
|
|
|
|
_http_add_body_bytes(connection, connection->buffer, connection->buffer_length);
|
2023-12-13 18:59:11 -05:00
|
|
|
}
|
|
|
|
}
|
2023-12-18 12:51:15 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
_http_connection_destroy(connection);
|
|
|
|
}
|
2023-12-13 18:59:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void _http_on_connection(uv_stream_t* stream, int status)
|
|
|
|
{
|
|
|
|
tf_http_t* http = stream->data;
|
|
|
|
tf_http_connection_t* connection = tf_malloc(sizeof(tf_http_connection_t));
|
|
|
|
*connection = (tf_http_connection_t) { .http = http, .tcp = { .data = connection } };
|
|
|
|
int r = uv_tcp_init(connection->http->loop, &connection->tcp);
|
|
|
|
if (r)
|
|
|
|
{
|
|
|
|
tf_printf("uv_tcp_init: %s\n", uv_strerror(r));
|
|
|
|
tf_free(connection);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = uv_accept(stream, (uv_stream_t*)&connection->tcp);
|
|
|
|
if (r)
|
|
|
|
{
|
|
|
|
tf_printf("uv_accept: %s\n", uv_strerror(r));
|
|
|
|
uv_close((uv_handle_t*)&connection->tcp, NULL);
|
|
|
|
tf_free(connection);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
r = uv_read_start((uv_stream_t*)&connection->tcp, _http_allocate_buffer, _http_on_read);
|
|
|
|
if (r)
|
|
|
|
{
|
|
|
|
tf_printf("uv_read-start: %s\n", uv_strerror(r));
|
|
|
|
uv_close((uv_handle_t*)&connection->tcp, NULL);
|
|
|
|
tf_free(connection);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
http->connections = tf_realloc(http->connections, http->connections_count + 1);
|
|
|
|
http->connections[http->connections_count++] = connection;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tf_http_listen(tf_http_t* http, int port)
|
|
|
|
{
|
|
|
|
uv_tcp_t* tcp = tf_malloc(sizeof(uv_tcp_t));
|
|
|
|
*tcp = (uv_tcp_t) { .data = http };
|
|
|
|
int r = uv_tcp_init(http->loop, tcp);
|
|
|
|
if (r)
|
|
|
|
{
|
|
|
|
tf_printf("uv_tcp_init: %s\n", uv_strerror(r));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r == 0)
|
|
|
|
{
|
|
|
|
struct sockaddr_in addr =
|
|
|
|
{
|
|
|
|
.sin_family = AF_INET,
|
|
|
|
.sin_addr = { .s_addr = INADDR_ANY },
|
|
|
|
.sin_port = ntohs(port),
|
|
|
|
};
|
|
|
|
r = uv_tcp_bind(tcp, (struct sockaddr*)&addr, 0);
|
|
|
|
if (r)
|
|
|
|
{
|
|
|
|
tf_printf("uv_tcp_bind: %s\n", uv_strerror(r));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r == 0)
|
|
|
|
{
|
|
|
|
r = uv_listen((uv_stream_t*)tcp, 16, _http_on_connection);
|
|
|
|
if (r)
|
|
|
|
{
|
|
|
|
tf_printf("uv_listen: %s\n", uv_strerror(r));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r == 0)
|
|
|
|
{
|
|
|
|
http->listeners = tf_realloc(http->listeners, sizeof(uv_tcp_t*) * (http->listeners_count + 1));
|
|
|
|
http->listeners[http->listeners_count++] = tcp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void tf_http_add_handler(tf_http_t* http, const char* pattern, tf_http_callback_t* callback, void* user_data)
|
|
|
|
{
|
|
|
|
http->handlers = tf_realloc(http->handlers, sizeof(tf_http_handler_t) * (http->handlers_count + 1));
|
|
|
|
http->handlers[http->handlers_count++] = (tf_http_handler_t)
|
|
|
|
{
|
|
|
|
.pattern = tf_strdup(pattern),
|
|
|
|
.callback = callback,
|
|
|
|
.user_data = user_data,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-12-18 12:51:15 -05:00
|
|
|
static void _http_free_on_close(uv_handle_t* handle)
|
|
|
|
{
|
|
|
|
handle->data = NULL;
|
|
|
|
tf_free(handle);
|
|
|
|
}
|
|
|
|
|
2023-12-13 18:59:11 -05:00
|
|
|
void tf_http_destroy(tf_http_t* http)
|
|
|
|
{
|
2023-12-18 12:51:15 -05:00
|
|
|
for (int i = 0; i < http->listeners_count; i++)
|
|
|
|
{
|
|
|
|
uv_close((uv_handle_t*)http->listeners[i], _http_free_on_close);
|
|
|
|
}
|
|
|
|
tf_free(http->listeners);
|
|
|
|
http->listeners = NULL;
|
|
|
|
http->listeners_count = 0;
|
|
|
|
|
2023-12-20 18:58:28 -05:00
|
|
|
for (int i = 0; i < http->handlers_count; i++)
|
|
|
|
{
|
|
|
|
if (http->handlers[i].pattern)
|
|
|
|
{
|
|
|
|
tf_free((void*)http->handlers[i].pattern);
|
|
|
|
http->handlers[i].pattern = NULL;
|
|
|
|
}
|
|
|
|
}
|
2023-12-18 12:51:15 -05:00
|
|
|
tf_free(http->handlers);
|
|
|
|
http->handlers_count = 0;
|
|
|
|
|
|
|
|
tf_free(http->connections);
|
|
|
|
http->connections_count = 0;
|
|
|
|
|
2023-12-13 18:59:11 -05:00
|
|
|
tf_free(http);
|
|
|
|
}
|
2023-12-17 12:44:54 -05:00
|
|
|
|
|
|
|
static const char* _http_status_text(int status)
|
|
|
|
{
|
|
|
|
switch (status)
|
|
|
|
{
|
|
|
|
case 200: return "OK";
|
|
|
|
case 404: return "File not found";
|
|
|
|
default: return "Unknown";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _http_on_shutdown(uv_shutdown_t* request, int status)
|
|
|
|
{
|
|
|
|
tf_free(request);
|
|
|
|
}
|
|
|
|
|
2023-12-18 12:51:15 -05:00
|
|
|
void tf_http_respond(tf_http_request_t* request, int status, const char** headers, int headers_count, const void* body, size_t content_length)
|
2023-12-17 12:44:54 -05:00
|
|
|
{
|
|
|
|
const char* status_text = _http_status_text(status);
|
|
|
|
/* HTTP/1.x 200 OK\r\n */
|
2023-12-20 18:13:03 -05:00
|
|
|
bool sent_content_length = false;
|
2023-12-17 12:44:54 -05:00
|
|
|
int headers_length = 8 + 1 + 3 + 1 + strlen(status_text) + 2;
|
|
|
|
for (int i = 0; i < headers_count; i += 2)
|
|
|
|
{
|
|
|
|
/* Key: Value\r\n */
|
|
|
|
headers_length += strlen(headers[i]) + 2 + strlen(headers[i + 1]) + 2;
|
2023-12-20 18:13:03 -05:00
|
|
|
if (strcasecmp(headers[i], "content-length") == 0)
|
|
|
|
{
|
|
|
|
sent_content_length = true;
|
|
|
|
}
|
2023-12-17 12:44:54 -05:00
|
|
|
}
|
|
|
|
/* \r\n */
|
|
|
|
headers_length += 2;
|
|
|
|
|
2023-12-20 18:13:03 -05:00
|
|
|
char content_length_buffer[32] = { 0 };
|
|
|
|
int content_length_buffer_length = 0;
|
|
|
|
if (!sent_content_length)
|
|
|
|
{
|
|
|
|
content_length_buffer_length = snprintf(content_length_buffer, sizeof(content_length_buffer), "Content-Length: %zd\r\n", content_length);
|
|
|
|
headers_length += content_length_buffer_length;
|
|
|
|
}
|
|
|
|
|
2023-12-17 12:44:54 -05:00
|
|
|
uv_write_t* write = tf_malloc(sizeof(uv_write_t) + headers_length + content_length + 1);
|
|
|
|
*write = (uv_write_t) { .data = request->connection };
|
|
|
|
char* buffer = (char*)(write + 1);
|
2023-12-20 19:13:03 -05:00
|
|
|
int offset = snprintf(buffer, headers_length + 1, "HTTP/1.%d %03d %s\r\n", request->connection->minor_version, status, status_text);
|
2023-12-17 12:44:54 -05:00
|
|
|
for (int i = 0; i < headers_count; i += 2)
|
|
|
|
{
|
|
|
|
offset += snprintf(buffer + offset, headers_length + 1 - offset, "%s: %s\r\n", headers[i], headers[i + 1]);
|
|
|
|
}
|
2023-12-20 18:13:03 -05:00
|
|
|
if (!sent_content_length)
|
|
|
|
{
|
|
|
|
memcpy(buffer + offset, content_length_buffer, content_length_buffer_length);
|
|
|
|
offset += content_length_buffer_length;
|
|
|
|
}
|
2023-12-17 12:44:54 -05:00
|
|
|
offset += snprintf(buffer + offset, headers_length + 1 - offset, "\r\n");
|
|
|
|
assert(offset == headers_length);
|
|
|
|
if (content_length)
|
|
|
|
{
|
|
|
|
memcpy(buffer + offset, body, content_length);
|
|
|
|
}
|
|
|
|
int r = uv_write(write, (uv_stream_t*)&request->connection->tcp, &(uv_buf_t) { .base = buffer, .len = headers_length + content_length }, 1, _http_on_write);
|
|
|
|
if (r)
|
|
|
|
{
|
|
|
|
tf_printf("uv_write: %s\n", uv_strerror(r));
|
|
|
|
}
|
|
|
|
|
2023-12-20 19:13:03 -05:00
|
|
|
if (request->connection->connection_close)
|
|
|
|
{
|
|
|
|
uv_shutdown_t* shutdown_request = tf_malloc(sizeof(uv_shutdown_t));
|
|
|
|
*shutdown_request = (uv_shutdown_t) { .data = request };
|
|
|
|
uv_shutdown(shutdown_request, (uv_stream_t*)&request->connection->tcp, _http_on_shutdown);
|
|
|
|
}
|
2023-12-17 12:44:54 -05:00
|
|
|
}
|
2023-12-20 18:58:28 -05:00
|
|
|
|
|
|
|
size_t tf_http_get_body(const tf_http_request_t* request, const void** out_data)
|
|
|
|
{
|
|
|
|
*out_data = request->connection->body;
|
|
|
|
return request->connection->content_length;
|
|
|
|
}
|