the function struct HTTPRequest http_request_constructor(char *request_string) defined in Networking/protocols/HTTP_Request.c is not retro compatible. According to RFC 7230, the lines are separated with \r\n, but the code assumed the request head was separated from the request body by \n\n instead of \r\n\r\n
the function
struct HTTPRequest http_request_constructor(char *request_string)defined inNetworking/protocols/HTTP_Request.cis not retro compatible. According to RFC 7230, the lines are separated with\r\n, but the code assumed the request head was separated from the request body by\n\ninstead of\r\n\r\n