]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/example/cpp11/http/server/mime_types.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / asio / example / cpp11 / http / server / mime_types.cpp
CommitLineData
7c673cae
FG
1//
2// mime_types.cpp
3// ~~~~~~~~~~~~~~
4//
1e59de90 5// Copyright (c) 2003-2022 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7c673cae
FG
6//
7// Distributed under the Boost Software License, Version 1.0. (See accompanying
8// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9//
10
11#include "mime_types.hpp"
12
13namespace http {
14namespace server {
15namespace mime_types {
16
17struct mapping
18{
19 const char* extension;
20 const char* mime_type;
21} mappings[] =
22{
23 { "gif", "image/gif" },
24 { "htm", "text/html" },
25 { "html", "text/html" },
26 { "jpg", "image/jpeg" },
27 { "png", "image/png" }
28};
29
30std::string extension_to_type(const std::string& extension)
31{
32 for (mapping m: mappings)
33 {
34 if (m.extension == extension)
35 {
36 return m.mime_type;
37 }
38 }
39
40 return "text/plain";
41}
42
43} // namespace mime_types
44} // namespace server
45} // namespace http