1b16184a72
- Add server support to `http-module` - Ensure `DevelopmentService` works on all platforms (including posix) - Ensure the built-in web server with dashboard works on all platforms (inluding posix). It still has some issues with certain featuers, but the basics work.
13 lines
236 B
C++
13 lines
236 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace tt::network {
|
|
|
|
/** Pure string parsing, no request I/O */
|
|
std::map<std::string, std::string> parseContentDisposition(const std::vector<std::string>& input);
|
|
|
|
}
|