mirror of
https://github.com/opus-tango/http-server-in-c.git
synced 2026-03-20 03:55:25 +00:00
add request handler for http request and response generation
This commit is contained in:
11
request_handler.h
Normal file
11
request_handler.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#ifndef HTTP_RESPONSE_BUILDER_H
|
||||
#define HTTP_RESPONSE_BUILDER_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
void handle_request(char* request, int length, char* response,
|
||||
size_t* response_length);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user