Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Message refactor#631

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
deanberris merged 11 commits intocpp-netlib:masterfromglynos:message_refactor
Apr 11, 2016
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
Show all changes
11 commits
Select commitHold shift + click to select a range
858eea7
Added image to the license in README.rst.
glynosApr 4, 2016
0187ec1
Removed some redundant headers.
glynosApr 2, 2016
047d89c
Added a first test in order to start refactoring the HTTP request/res…
glynosApr 3, 2016
40bab67
Since I removed the include directory in a previous commit, I have no…
glynosApr 3, 2016
175cdd3
Updated the examples that used the include directory that I removed.
glynosApr 3, 2016
5614b43
Removed boost/network.hpp
glynosApr 9, 2016
2f61e45
Fixed string constants.
glynosApr 10, 2016
4c9fbda
Added a unit tests for the HTTP client request.
glynosApr 10, 2016
5f6ab56
Added a unit test for the HTTP client response.
glynosApr 10, 2016
99c777c
Removed some headers that looked redundant.
glynosApr 10, 2016
1e14f3c
Refactored HTTP client request and response.
glynosApr 10, 2016
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
PrevPrevious commit
NextNext commit
Since I removed the include directory in a previous commit, I have no…
…w updated all the tests.
  • Loading branch information
@glynos
glynos committedApr 4, 2016
commit40bab67cd25a833e3a31c1fdbef8f466a083ff67
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,7 +6,7 @@
// http://www.boost.org/LICENSE_1_0.txt)

#include <gtest/gtest.h>
#include <boost/network/include/http/client.hpp>
#include <boost/network/protocol/http/client.hpp>
#include "client_types.hpp"

namespace net = boost::network;
Expand Down
2 changes: 1 addition & 1 deletionlibs/network/test/http/client_get_streaming_test.cpp
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -5,7 +5,7 @@
// http://www.boost.org/LICENSE_1_0.txt)

#include <gtest/gtest.h>
#include <boost/network/include/http/client.hpp>
#include <boost/network/protocol/http/client.hpp>
#include <iostream>
#include "client_types.hpp"

Expand Down
2 changes: 1 addition & 1 deletionlibs/network/test/http/client_get_test.cpp
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,7 +4,7 @@
// http://www.boost.org/LICENSE_1_0.txt)

#include <gtest/gtest.h>
#include <boost/network/include/http/client.hpp>
#include <boost/network/protocol/http/client.hpp>
#include "client_types.hpp"

namespace net = boost::network;
Expand Down
2 changes: 1 addition & 1 deletionlibs/network/test/http/client_get_timeout_test.cpp
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,7 +7,7 @@

#include <gtest/gtest.h>
#include <cstdlib>
#include <boost/network/include/http/client.hpp>
#include <boost/network/protocol/http/client.hpp>
#include "client_types.hpp"
#include "http_test_server.hpp"

Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,7 @@
#include <gtest/gtest.h>
#include <boost/config/warning_disable.hpp>
#include <boost/config.hpp>
#include <boost/network/include/http/client.hpp>
#include <boost/network/protocol/http/client.hpp>
#include <boost/range.hpp>
#include <boost/cast.hpp>
#include <string>
Expand Down
4 changes: 2 additions & 2 deletionslibs/network/test/http/client_types.hpp
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,7 @@
#include <gtest/gtest.h>
#include <tuple>
#include "tag_types.hpp"
#include <boost/network/include/http/client.hpp>
#include <boost/network/protocol/http/client.hpp>

// HTTPClientTest is a re-usable fixture for client tests that need to test
// various variations of the client. This is to be used with googletest's
Expand All@@ -22,7 +22,7 @@
//
// We also already provide ClientTypes as a convenience in this header for all
// known and supported client type implementations in the library.
//
//
// T must be a tuple in the form: <tag, http version major, http version minor>.
template <class T>
class HTTPClientTest : public ::testing::Test {
Expand Down
2 changes: 1 addition & 1 deletionlibs/network/test/http/message_async_ready_test.cpp
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,7 +6,7 @@
// http://www.boost.org/LICENSE_1_0.txt)

#include <gtest/gtest.h>
#include <boost/network/include/http/client.hpp>
#include <boost/network/protocol/http/client.hpp>
#include "tag_types.hpp"

namespace http = boost::network::http;
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
#include <thread>
#include <chrono>
#include <boost/network/include/http/server.hpp>
#include <boost/network/protocol/http/server.hpp>

namespace http = boost::network::http;
namespace util = boost::network::utils;
Expand Down
2 changes: 1 addition & 1 deletionlibs/network/test/http/server_constructor_test.cpp
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,7 +7,7 @@

#include <memory>
#include <gtest/gtest.h>
#include <boost/network/include/http/server.hpp>
#include <boost/network/protocol/http/server.hpp>

namespace http = boost::network::http;
namespace util = boost::network::utils;
Expand Down
2 changes: 1 addition & 1 deletionlibs/network/test/http_server_async_less_copy.cpp
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -9,7 +9,7 @@
#include <vector>

#include <boost/config/warning_disable.hpp>
#include <boost/network/include/http/server.hpp>
#include <boost/network/protocol/http/server.hpp>
#include <boost/network/utils/thread_pool.hpp>
#include <boost/range/algorithm/find_if.hpp>

Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp