dodo  0.0.1
A C++ library to create containerized Linux services
http.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of the dodo library (https://github.com/jmspit/dodo).
3  * Copyright (c) 2019 Jan-Marten Spit.
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, version 3.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 
19 /**
20  * @file http.cpp
21  * Implements the dodo::network::HTTPMessage class.
22  */
23 
24 #include <common/exception.hpp>
25 #include <common/puts.hpp>
27 #include <algorithm>
28 #include <sstream>
29 #include <iostream>
30 
31 #include <common/util.hpp>
32 
33 namespace dodo {
34 
35  namespace network {
36 
37 
38  }
39 
40 }
puts.hpp
dodo
A C++ platform interface to lean Linux services tailored for containerized deployment.
Definition: application.hpp:29
http.hpp
exception.hpp
util.hpp