#ifndef _HTTP_H_ #define _HTTP_H_ #include #include typedef int (*http_handle_file)(const std::vector &input, std::vector &output); int start_http_server(int port, http_handle_file handle_file); #endif