forked fromglynos/cpp-netlib
- Notifications
You must be signed in to change notification settings - Fork425
Restructure dirs#181
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
Uh oh!
There was an error while loading.Please reload this page.
Merged
Restructure dirs#181
Changes from1 commit
Commits
Show all changes
5 commits Select commitHold shift + click to select a range
c246806 Refactored thread_pool from the utils sub-directory (and namespace) i…
glynos1d158ca Removed checks for c++0x as they are no longer used.
glynosfeecbc2 Moved http subdirectory; includes version.hpp and constants.
glynos65b99b8 Removed http code from old subdirectory.
glynos6f51e04 Moved mime to a separate subdirectory.
glynosFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
Moved http subdirectory; includes version.hpp and constants.
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
commitfeecbc2be0a92611e91bd56ed7845010cd49c9ee
There are no files selected for viewing
5 changes: 3 additions & 2 deletionsCMakeLists.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletionshttp/CMakeLists.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # Copyright (c) Glyn Matthews 2012. | ||
| # Distributed under the Boost Software License, Version 1.0. | ||
| # (See accompanying file LICENSE_1_0.txt or copy at | ||
| # http://www.boost.org/LICENSE_1_0.txt) | ||
| add_subdirectory(src) | ||
| if(CPP-NETLIB_BUILD_TESTS) | ||
| enable_testing() | ||
| add_subdirectory(test) | ||
| endif(CPP-NETLIB_BUILD_TESTS) |
185 changes: 185 additions & 0 deletionshttp/src/CMakeLists.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,185 @@ | ||
| # Copyright (c) Glyn Matthews 2011, 2012. | ||
| # Copyright 2011 Dean Michael Berris (dberris@google.com) | ||
| # Copyright 2012 A. Joel Lamotte (mjklaim@gmail.com) | ||
| # Copyright 2011 Google, Inc. | ||
| # Distributed under the Boost Software License, Version 1.0. | ||
| # (See accompanying file LICENSE_1_0.txt or copy at | ||
| # http://www.boost.org/LICENSE_1_0.txt) | ||
| include_directories( | ||
| ${CPP-NETLIB_SOURCE_DIR}/uri/src | ||
| ${CPP-NETLIB_SOURCE_DIR}/message/src | ||
| ${CPP-NETLIB_SOURCE_DIR}/logging/src | ||
| ${CPP-NETLIB_SOURCE_DIR}/include | ||
| ${CPP-NETLIB_SOURCE_DIR}) | ||
| if (OPENSSL_FOUND) | ||
| include_directories(${OPENSSL_INCLUDE_DIR}) | ||
| endif() | ||
| if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU) | ||
| if (HAVE_STD11) | ||
| set(CPP-NETLIB_CXXFLAGS "-Wall -std=c++11") | ||
| elseif (HAVE_STD0X) | ||
| set(CPP-NETLIB_CXXFLAGS "-Wall -std=c++0x") | ||
| endif() | ||
| elseif (${CMAKE_CXX_COMPILER_ID} MATCHES Clang) | ||
| CHECK_CXX_COMPILER_FLAG(-std=c++11 HAVE_STD11) | ||
| set(CPP-NETLIB_CXXFLAGS "-Wall -std=c++11 -stdlib=libc++") | ||
| set(CPP-NETLIB_CXXFLAGS "-Wall -std=c++11 -stdlib=libc++") | ||
| endif() | ||
| set(CPP-NETLIB_HTTP_MESSAGE_SRCS http/request.cpp http/response.cpp) | ||
| add_library(cppnetlib-http-message ${CPP-NETLIB_HTTP_MESSAGE_SRCS}) | ||
| add_dependencies(cppnetlib-http-message | ||
| # ${Boost_LIBRARIES} | ||
| cppnetlib-message) | ||
| target_link_libraries(cppnetlib-http-message | ||
| ${Boost_LIBRARIES} | ||
| cppnetlib-message) | ||
| foreach (src_file ${CPP-NETLIB_HTTP_MESSAGE_SRCS}) | ||
| if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU) | ||
| set_source_files_properties(${src_file} | ||
| PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| elseif (${CMAKE_CXX_COMPILER_ID} MATCHES Clang) | ||
| set_source_files_properties(${src_file} | ||
| PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| endif() | ||
| endforeach(src_file) | ||
| set(CPP-NETLIB_HTTP_MESSAGE_WRAPPERS_SRCS http/message/wrappers.cpp) | ||
| add_library(cppnetlib-http-message-wrappers ${CPP-NETLIB_HTTP_MESSAGE_WRAPPERS_SRCS}) | ||
| foreach (src_file ${CPP-NETLIB_HTTP_MESSAGE_WRAPPERS_SRCS}) | ||
| if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU) | ||
| set_source_files_properties(${src_file} | ||
| PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| elseif (${CMAKE_CXX_COMPILER_ID} MATCHES Clang) | ||
| set_source_files_properties(${src_file} | ||
| PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| endif() | ||
| endforeach(src_file) | ||
| #set(CPP-NETLIB_HTTP_SERVER_PARSERS_SRCS server_request_parsers_impl.cpp) | ||
| #add_library(cppnetlib-http-server-parsers ${CPP-NETLIB_HTTP_SERVER_PARSERS_SRCS}) | ||
| #foreach (src_file ${CPP-NETLIB_HTTP_SERVER_PARSERS_SRCS}) | ||
| #if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU) | ||
| # set_source_files_properties(${src_file} | ||
| # PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| #elseif (${CMAKE_CXX_COMPILER_ID} MATCHES Clang) | ||
| # set_source_files_properties(${src_file} | ||
| # PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| #endif() | ||
| #endforeach(src_file) | ||
| # | ||
| #set(CPP-NETLIB_HTTP_SERVER_SRCS | ||
| # http/server_async_impl.cpp | ||
| # http/server_options.cpp | ||
| # http/server_socket_options_setter.cpp | ||
| # http/server_sync_impl.cpp | ||
| # ) | ||
| #add_library(cppnetlib-http-server ${CPP-NETLIB_HTTP_SERVER_SRCS}) | ||
| #add_dependencies(cppnetlib-http-server | ||
| # ${CPP-NETLIB_LOGGING_LIB} | ||
| # cppnetlib-constants | ||
| # cppnetlib-uri | ||
| # cppnetlib-message | ||
| # cppnetlib-message-wrappers | ||
| # cppnetlib-message-directives | ||
| # cppnetlib-http-message | ||
| # cppnetlib-http-message-wrappers | ||
| # cppnetlib-http-server-parsers | ||
| # cppnetlib-utils-thread_pool | ||
| # ) | ||
| #target_link_libraries(cppnetlib-http-server | ||
| # ${Boost_LIBRARIES} | ||
| # ${CPP-NETLIB_LOGGING_LIB} | ||
| # cppnetlib-constants | ||
| # cppnetlib-uri | ||
| # cppnetlib-message | ||
| # cppnetlib-message-wrappers | ||
| # cppnetlib-message-directives | ||
| # cppnetlib-http-message | ||
| # cppnetlib-http-message-wrappers | ||
| # cppnetlib-http-server-parsers | ||
| # cppnetlib-utils-thread_pool | ||
| # ) | ||
| #foreach (src_file ${CPP-NETLIB_HTTP_SERVER_SRCS}) | ||
| #if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU) | ||
| # set_source_files_properties(${src_file} | ||
| # PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| #elseif (${CMAKE_CXX_COMPILER_ID} MATCHES Clang) | ||
| # set_source_files_properties(${src_file} | ||
| # PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| #endif() | ||
| #endforeach(src_file) | ||
| set(CPP-NETLIB_HTTP_CLIENT_CONNECTIONS_SRCS | ||
| http/client_connections.cpp | ||
| http/simple_connection_manager.cpp | ||
| http/simple_connection_factory.cpp | ||
| http/connection_delegate_factory.cpp | ||
| http/client_resolver_delegate.cpp | ||
| http/client_resolver_delegate_factory.cpp | ||
| http/client_connection_delegates.cpp | ||
| http/client_connection_factory.cpp | ||
| http/client_async_resolver.cpp | ||
| http/client_connection_normal.cpp) | ||
| add_library(cppnetlib-http-client-connections ${CPP-NETLIB_HTTP_CLIENT_CONNECTIONS_SRCS}) | ||
| foreach (src_file ${CPP-NETLIB_HTTP_CLIENT_CONNECTIONS_SRCS}) | ||
| if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU) | ||
| set_source_files_properties(${src_file} | ||
| PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| elseif (${CMAKE_CXX_COMPILER_ID} MATCHES Clang) | ||
| set_source_files_properties(${src_file} | ||
| PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| endif() | ||
| endforeach(src_file) | ||
| set(CPP-NETLIB_HTTP_CLIENT_SRCS | ||
| http/client.cpp) | ||
| add_library(cppnetlib-http-client ${CPP-NETLIB_HTTP_CLIENT_SRCS}) | ||
| add_dependencies(cppnetlib-http-client | ||
| ${CPP-NETLIB_LOGGING_LIB} | ||
| cppnetlib-constants | ||
| cppnetlib-uri | ||
| cppnetlib-message | ||
| cppnetlib-message-wrappers | ||
| cppnetlib-message-directives | ||
| cppnetlib-http-message | ||
| cppnetlib-http-message-wrappers | ||
| cppnetlib-http-client-connections | ||
| ) | ||
| target_link_libraries(cppnetlib-http-client | ||
| ${Boost_LIBRARIES} | ||
| ${CPP-NETLIB_LOGGING_LIB} | ||
| cppnetlib-constants | ||
| cppnetlib-uri | ||
| cppnetlib-message | ||
| cppnetlib-message-wrappers | ||
| cppnetlib-message-directives | ||
| cppnetlib-http-message | ||
| cppnetlib-http-message-wrappers | ||
| cppnetlib-http-client-connections | ||
| ) | ||
| foreach (src_file ${CPP-NETLIB_HTTP_CLIENT_SRCS}) | ||
| if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU) | ||
| set_source_files_properties(${src_file} | ||
| PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| elseif (${CMAKE_CXX_COMPILER_ID} MATCHES Clang) | ||
| set_source_files_properties(${src_file} | ||
| PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| endif() | ||
| endforeach(src_file) | ||
| set(CPP-NETLIB_CONSTANTS_SRCS constants.cpp) | ||
| add_library(cppnetlib-constants ${CPP-NETLIB_CONSTANTS_SRCS}) | ||
| foreach (src_file ${CPP-NETLIB_CONSTANTS_SRCS}) | ||
| if (${CMAKE_CXX_COMPILER_ID} MATCHES GNU) | ||
| set_source_files_properties(${src_file} | ||
| PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| elseif (${CMAKE_CXX_COMPILER_ID} MATCHES Clang) | ||
| set_source_files_properties(${src_file} | ||
| PROPERTIES COMPILE_FLAGS ${CPP-NETLIB_CXXFLAGS}) | ||
| endif() | ||
| endforeach(src_file) |
17 changes: 17 additions & 0 deletionshttp/src/client.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| // Copyright 2011 Dean Michael Berris (dberris@google.com). | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #warn Building the library even with NETWORK_NO_LIB defined. | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/protocol/http/client/connection/normal_delegate.ipp> | ||
| #ifdef NETWORK_ENABLE_HTTPS | ||
| #include <network/protocol/http/client/connection/ssl_delegate.ipp> | ||
| #endif |
11 changes: 11 additions & 0 deletionshttp/src/constants.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| // Copyright 2011 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/constants.ipp> |
15 changes: 15 additions & 0 deletionshttp/src/http/client.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| // Copyright 2011 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/protocol/http/client.ipp> | ||
| #include <network/protocol/http/client/base.ipp> | ||
| #include <network/protocol/http/client/facade.ipp> | ||
| #include <network/protocol/http/client/options.ipp> | ||
11 changes: 11 additions & 0 deletionshttp/src/http/client_async_resolver.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| // Copyright 2011 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/protocol/http/client/connection/async_resolver.ipp> |
14 changes: 14 additions & 0 deletionshttp/src/http/client_connection_delegates.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| // Copyright 2011 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/protocol/http/client/connection/normal_delegate.ipp> | ||
| #ifdef NETWORK_ENABLE_HTTPS | ||
| #include <network/protocol/http/client/connection/ssl_delegate.ipp> | ||
| #endif |
11 changes: 11 additions & 0 deletionshttp/src/http/client_connection_factory.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| // Copyright 2011 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/protocol/http/client/connection/connection_factory.ipp> |
11 changes: 11 additions & 0 deletionshttp/src/http/client_connection_normal.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| // Copyright 2011 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/protocol/http/client/connection/async_normal.ipp> |
16 changes: 16 additions & 0 deletionshttp/src/http/client_connections.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| // Copyright 2011 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/protocol/http/impl/access.hpp> | ||
| #include <network/protocol/http/response.hpp> | ||
| #include <network/protocol/http/request.hpp> | ||
| #include <network/protocol/http/client/connection_manager.ipp> | ||
| #include <network/protocol/http/client/client_connection.ipp> | ||
| #include <network/protocol/http/impl/access.ipp> |
11 changes: 11 additions & 0 deletionshttp/src/http/client_resolver_delegate.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| // Copyright 2011 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/protocol/http/client/connection/resolver_delegate.ipp> |
11 changes: 11 additions & 0 deletionshttp/src/http/client_resolver_delegate_factory.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| // Copyright 2011 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/protocol/http/client/connection/resolver_delegate_factory.ipp> |
11 changes: 11 additions & 0 deletionshttp/src/http/connection_delegate_factory.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| // Copyright 2011 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/protocol/http/client/connection/connection_delegate_factory.ipp> |
12 changes: 12 additions & 0 deletionshttp/src/http/message/wrappers.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| // Copyright 2012 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2012 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #include <network/protocol/http/message/wrappers/uri.ipp> | ||
| #include <network/protocol/http/message/wrappers/anchor.ipp> | ||
| #include <network/protocol/http/message/wrappers/host.ipp> | ||
| #include <network/protocol/http/message/wrappers/path.ipp> | ||
| #include <network/protocol/http/message/wrappers/port.ipp> | ||
| #include <network/protocol/http/message/wrappers/query.ipp> |
12 changes: 12 additions & 0 deletionshttp/src/http/request.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| // Copyright 2011 Dean Michael Berris <dberris@google.com>. | ||
| // Copyright 2011 Google, Inc. | ||
| // Distributed under the Boost Software License, Version 1.0. | ||
| // (See accompanying file LICENSE_1_0.txt or copy at | ||
| // http://www.boost.org/LICENSE_1_0.txt) | ||
| #ifdef NETWORK_NO_LIB | ||
| #undef NETWORK_NO_LIB | ||
| #endif | ||
| #include <network/protocol/http/request/request.ipp> | ||
| #include <network/protocol/http/request/request_base.ipp> |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.