From 210404a73706993d197c1290d5a411394e176fbe Mon Sep 17 00:00:00 2001 From: Aldrik Ramaekers Date: Fri, 9 Jan 2026 15:28:38 +0100 Subject: remove unused lib files --- libs/cpp-httplib/example/upload.cc | 61 -------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 libs/cpp-httplib/example/upload.cc (limited to 'libs/cpp-httplib/example/upload.cc') diff --git a/libs/cpp-httplib/example/upload.cc b/libs/cpp-httplib/example/upload.cc deleted file mode 100644 index f7a822b..0000000 --- a/libs/cpp-httplib/example/upload.cc +++ /dev/null @@ -1,61 +0,0 @@ -// -// upload.cc -// -// Copyright (c) 2019 Yuji Hirose. All rights reserved. -// MIT License -// - -#include -#include -#include -using namespace httplib; -using namespace std; - -const char *html = R"( -
- - - -
- -)"; - -int main(void) { - Server svr; - - svr.Get("/", [](const Request & /*req*/, Response &res) { - res.set_content(html, "text/html"); - }); - - svr.Post("/post", [](const Request &req, Response &res) { - const auto &image_file = req.form.get_file("image_file"); - const auto &text_file = req.form.get_file("text_file"); - - cout << "image file length: " << image_file.content.length() << endl - << "image file name: " << image_file.filename << endl - << "text file length: " << text_file.content.length() << endl - << "text file name: " << text_file.filename << endl; - - { - ofstream ofs(image_file.filename, ios::binary); - ofs << image_file.content; - } - { - ofstream ofs(text_file.filename); - ofs << text_file.content; - } - - res.set_content("done", "text/plain"); - }); - - svr.listen("localhost", 1234); -} -- cgit v1.2.3-70-g09d2