Add todo about line foldering

This commit is contained in:
Nick Krichevsky 2018-09-01 20:38:17 -04:00
parent 96efb3c8aa
commit b500854c1a

View file

@ -54,6 +54,7 @@ static struct line_read_result read_line(const char *buffer, int buffer_size, st
int name_size = header_delim - buffer;
char *header_name = malloc((name_size + 1) * sizeof(char));
// Start of the buffer + the number of bytes read - 1 for the \r
// TODO: Support line-continued headers
int value_size = (line_terminator - buffer) + line_length - 1;
char *header_value = malloc((value_size + 1) * sizeof(char));
memcpy(header_name, buffer, name_size);