Files
tactility/Tactility/Include/Tactility/network/HttpdReq.h
T
Ken Van Hoeylandt 1b16184a72 Multi-platform http server (#646)
- 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.
2026-09-06 14:16:23 +02:00

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);
}