Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/httpserver/basic_auth_fail_response.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#define SRC_HTTPSERVER_BASIC_AUTH_FAIL_RESPONSE_HPP_

#include <string>
#include "http_utils.hpp"
#include "httpserver/http_utils.hpp"
#include "httpserver/string_response.hpp"

struct MHD_Connection;
Expand Down
2 changes: 1 addition & 1 deletion src/httpserver/deferred_response.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <sys/types.h>
#include <memory>
#include <string>
#include "http_utils.hpp"
#include "httpserver/http_utils.hpp"
#include "httpserver/string_response.hpp"

struct MHD_Response;
Expand Down
2 changes: 1 addition & 1 deletion src/httpserver/digest_auth_fail_response.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#define SRC_HTTPSERVER_DIGEST_AUTH_FAIL_RESPONSE_HPP_

#include <string>
#include "http_utils.hpp"
#include "httpserver/http_utils.hpp"
#include "httpserver/string_response.hpp"

struct MHD_Connection;
Expand Down
2 changes: 1 addition & 1 deletion src/httpserver/file_response.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#define SRC_HTTPSERVER_FILE_RESPONSE_HPP_

#include <string>
#include "http_utils.hpp"
#include "httpserver/http_utils.hpp"
#include "httpserver/http_response.hpp"

struct MHD_Response;
Expand Down
2 changes: 1 addition & 1 deletion src/httpserver/string_response.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#include <string>
#include <utility>
#include "http_utils.hpp"
#include "httpserver/http_utils.hpp"
#include "httpserver/http_response.hpp"

struct MHD_Response;
Expand Down
2 changes: 1 addition & 1 deletion src/httpserver/webserver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#include <set>
#include <string>

#include "http_utils.hpp"
#include "httpserver/http_utils.hpp"
#include "httpserver/create_webserver.hpp"
#include "httpserver/details/http_endpoint.hpp"

Expand Down
4 changes: 2 additions & 2 deletions test/integ/authentication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@

#include <curl/curl.h>

#include "httpserver.hpp"
#include "littletest.hpp"
#include "./httpserver.hpp"
#include "./littletest.hpp"

#define MY_OPAQUE "11733b200778ce33060f31c9af70a870ba96ddd4"

Expand Down
4 changes: 2 additions & 2 deletions test/integ/ban_system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
#include <map>
#include <string>

#include "httpserver.hpp"
#include "./httpserver.hpp"
#include "httpserver/http_utils.hpp"
#include "littletest.hpp"
#include "./littletest.hpp"

using std::shared_ptr;

Expand Down
4 changes: 2 additions & 2 deletions test/integ/basic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
#include <sstream>
#include <string>

#include "httpserver.hpp"
#include "./httpserver.hpp"
#include "httpserver/string_utilities.hpp"
#include "littletest.hpp"
#include "./littletest.hpp"

using std::string;
using std::map;
Expand Down
4 changes: 2 additions & 2 deletions test/integ/deferred.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
#include <signal.h>
#include <unistd.h>

#include "httpserver.hpp"
#include "littletest.hpp"
#include "./httpserver.hpp"
#include "./littletest.hpp"

using std::shared_ptr;
using std::string;
Expand Down
4 changes: 2 additions & 2 deletions test/integ/nodelay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
#include <map>
#include <string>

#include "httpserver.hpp"
#include "littletest.hpp"
#include "./httpserver.hpp"
#include "./littletest.hpp"

using std::shared_ptr;

Expand Down
4 changes: 2 additions & 2 deletions test/integ/threaded.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
#include <map>
#include <string>

#include "httpserver.hpp"
#include "littletest.hpp"
#include "./httpserver.hpp"
#include "./littletest.hpp"

using std::shared_ptr;

Expand Down
4 changes: 2 additions & 2 deletions test/integ/ws_start_stop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
#include <pthread.h>
#include <unistd.h>

#include "httpserver.hpp"
#include "littletest.hpp"
#include "./httpserver.hpp"
#include "./littletest.hpp"

using std::shared_ptr;

Expand Down
2 changes: 1 addition & 1 deletion test/unit/http_endpoint_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#include "httpserver/details/http_endpoint.hpp"

#include "littletest.hpp"
#include "./littletest.hpp"

using httpserver::details::http_endpoint;
using std::string;
Expand Down
4 changes: 2 additions & 2 deletions test/unit/http_resource_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
#include <string>
#include <vector>

#include "httpserver.hpp"
#include "littletest.hpp"
#include "./httpserver.hpp"
#include "./littletest.hpp"

using std::shared_ptr;
using std::sort;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/http_utils_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#include <cstdio>

#include "littletest.hpp"
#include "./littletest.hpp"

using std::string;
using std::vector;
Expand Down
2 changes: 1 addition & 1 deletion test/unit/string_utilities_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#include <cstdio>

#include "littletest.hpp"
#include "./littletest.hpp"

using std::string;
using std::vector;
Expand Down