├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── Makefile ├── README.md ├── boost ├── cgi.hpp └── cgi │ ├── basic_client.hpp │ ├── basic_connection.hpp │ ├── basic_request.hpp │ ├── basic_request_acceptor.hpp │ ├── cgi.hpp │ ├── cgi │ ├── acceptor.hpp │ ├── client.hpp │ ├── request.hpp │ ├── request_service.hpp │ ├── service.hpp │ └── traits.hpp │ ├── common │ ├── basic_protocol_service.hpp │ ├── commit.hpp │ ├── connection_base.hpp │ ├── cookie.hpp │ ├── data_map_proxy.hpp │ ├── error.hpp │ ├── form_parser.hpp │ ├── form_part.hpp │ ├── has_hidden_io_service.hpp │ ├── header.hpp │ ├── io_service_provider.hpp │ ├── is_async.hpp │ ├── map.hpp │ ├── name.hpp │ ├── parse_options.hpp │ ├── path_info.hpp │ ├── protocol_traits.hpp │ ├── request_acceptor_service.hpp │ ├── request_base.hpp │ ├── request_data.hpp │ ├── request_service.hpp │ ├── request_status.hpp │ ├── response.hpp │ ├── role_type.hpp │ ├── source_enums.hpp │ └── tags.hpp │ ├── config.hpp │ ├── connections │ ├── anonymous_pipe.hpp │ ├── async_stdio.hpp │ ├── shareable_tcp_socket.hpp │ ├── stdio.hpp │ └── tcp_socket.hpp │ ├── detail │ ├── basic_io_object.hpp │ ├── basic_sync_io_object.hpp │ ├── common_headers.hpp │ ├── coroutine.hpp │ ├── extract_params.hpp │ ├── is_multimap.hpp │ ├── pop_options.hpp │ ├── push_options.hpp │ ├── save_environment.hpp │ ├── service_base.hpp │ ├── service_id.hpp │ ├── throw_error.hpp │ ├── unyield.hpp │ ├── url_decode.hpp │ ├── url_decode.ipp │ └── yield.hpp │ ├── error.hpp │ ├── fcgi.hpp │ ├── fcgi │ ├── acceptor.hpp │ ├── acceptor_service_impl.hpp │ ├── client.hpp │ ├── error.hpp │ ├── fcgi_connection.hpp │ ├── request.hpp │ ├── request_acceptor_service.hpp │ ├── request_fwd.hpp │ ├── request_service.hpp │ ├── response.hpp │ ├── service.hpp │ ├── specification.hpp │ ├── traits.hpp │ ├── transport_selection.hpp │ └── win32_acceptor_service_impl.hpp │ ├── fwd │ ├── basic_client_fwd.hpp │ ├── basic_connection_fwd.hpp │ ├── basic_protocol_service_fwd.hpp │ ├── basic_request_acceptor_fwd.hpp │ ├── basic_request_fwd.hpp │ ├── data_map_proxy_fwd.hpp │ ├── form_parser_fwd.hpp │ ├── io_service_provider_fwd.hpp │ ├── request_service_fwd.hpp │ └── sessions_fwd.hpp │ ├── http │ └── status_code.hpp │ ├── impl │ ├── basic_request.ipp │ ├── fcgi_request_service.ipp │ ├── form_parser.ipp │ └── response.ipp │ ├── import │ ├── basic_io_object.hpp │ ├── buffer.hpp │ ├── io_service.hpp │ ├── read.hpp │ ├── streambuf.hpp │ └── write.hpp │ ├── scgi.hpp │ ├── scgi │ ├── acceptor.hpp │ ├── client.hpp │ ├── error.hpp │ ├── request.hpp │ ├── request_acceptor_service.hpp │ ├── request_impl.hpp │ ├── request_parser.hpp │ ├── request_parser.ipp │ ├── request_service.hpp │ ├── request_service.ipp │ ├── service.hpp │ └── traits.hpp │ └── utility │ ├── redirect.hpp │ ├── sessions.hpp │ └── stencil.hpp ├── libs └── cgi │ ├── build │ ├── Jamfile.v2 │ └── msvc │ │ └── 9.0 │ │ └── Boost.CGI │ │ ├── 0.fcgi_template │ │ └── fcgi_file_browser.vcproj │ │ ├── Amortization │ │ ├── Amortization.vcproj │ │ └── Amortization.vcproj.360-SYSTEMS.darreng.user │ │ ├── Boost.CGI.sln │ │ ├── cgi_cookie_game │ │ └── cgi_cookie_game.vcproj │ │ ├── cgi_cookies │ │ └── cgi_cookies.vcproj │ │ ├── cgi_ctemplate_cookie_game │ │ └── cgi_ctemplate_cookie_game.vcproj │ │ ├── cgi_ctemplate_debug_server │ │ ├── cgi_ctemplate_debug_server.vcproj │ │ └── cgi_ctemplate_debug_server.vcproj.360-SYSTEMS.darreng.user │ │ ├── cgi_debug_server │ │ ├── cgi_debug_server.vcproj │ │ └── cgi_debug_server.vcproj.360-SYSTEMS.darreng.user │ │ ├── cgi_echo │ │ ├── cgi_echo.vcproj │ │ └── cgi_echo.vcproj.360-SYSTEMS.darreng.user │ │ ├── cgi_file_browser │ │ └── cgi_file_browser.vcproj │ │ ├── cgi_file_browser_debug │ │ └── cgi_file_browser_debug.vcproj │ │ ├── cgi_hello_world │ │ ├── cgi_hello_world.vcproj │ │ └── cgi_hello_world.vcproj.360-SYSTEMS.darreng.user │ │ ├── cgi_quickstart │ │ └── cgi_quickstart.vcproj │ │ ├── cgi_sessions │ │ └── cgi_sessions.vcproj │ │ ├── cgi_stencil │ │ └── cgi_stencil.vcproj │ │ ├── cgi_upload │ │ └── cgi_upload.vcproj │ │ ├── fastcgi_quickstart │ │ └── fastcgi_quickstart.vcproj │ │ ├── fcgi_amortization │ │ └── fcgi_amortization.vcproj │ │ ├── fcgi_async_echo │ │ └── fcgi_async_echo.vcproj │ │ ├── fcgi_echo │ │ └── fcgi_echo.vcproj │ │ ├── fcgi_echo_threaded │ │ └── fcgi_echo_threaded.vcproj │ │ ├── fcgi_file_browser │ │ └── fcgi_file_browser.vcproj │ │ ├── fcgi_hello_world │ │ ├── fcgi_hello_world.vcproj │ │ └── fcgi_hello_world.vcproj.360-SYSTEMS.darreng.user │ │ ├── fcgi_stencil │ │ ├── fcgi_stencil.vcproj │ │ └── templates │ │ │ ├── stencil.html │ │ │ └── stencil.include.html │ │ ├── fcgi_upload │ │ └── fcgi_upload.vcproj │ │ ├── sessions_quickstart │ │ └── sessions_quickstart.vcproj │ │ └── xcgi_server1 │ │ ├── xcgi_server1.vcproj │ │ └── xcgi_server1.vcproj.360-SYSTEMS.darreng.user │ ├── doc │ ├── Jamfile.v2 │ ├── cgi.qbk │ ├── index.html │ └── src │ │ ├── acknowledgements.qbk │ │ ├── cgi.qbk │ │ ├── design.qbk │ │ ├── examples.qbk │ │ ├── future_development.qbk │ │ ├── images │ │ └── callouts │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── introduction.qbk │ │ ├── library_organisation.qbk │ │ ├── links.qbk │ │ ├── overview.qbk │ │ ├── overview │ │ ├── acceptors.qbk │ │ ├── clients.qbk │ │ ├── requests.qbk │ │ ├── requests │ │ │ └── loading.qbk │ │ ├── responses.qbk │ │ ├── services.qbk │ │ ├── sessions.qbk │ │ └── traits.qbk │ │ ├── preface.qbk │ │ ├── reference.qbk │ │ ├── status.qbk │ │ ├── tips.qbk │ │ ├── troubleshooting.qbk │ │ ├── tutorial.qbk │ │ ├── tutorial │ │ ├── cgi.qbk │ │ ├── cgi_quickstart.cpp │ │ ├── cookies.qbk │ │ ├── fastcgi.qbk │ │ ├── fastcgi_quickstart.cpp │ │ ├── hello_world.qbk │ │ ├── installation.qbk │ │ ├── quickstart.qbk │ │ ├── requests.qbk │ │ ├── running.qbk │ │ ├── scaling.qbk │ │ ├── tutorial.qbk │ │ └── variables.qbk │ │ ├── user_guide.qbk │ │ ├── user_guide │ │ ├── async_ops.qbk │ │ ├── building.qbk │ │ ├── getting_started.qbk │ │ ├── handling_requests.qbk │ │ ├── headers.qbk │ │ ├── protocols.qbk │ │ ├── request_objects.qbk │ │ ├── server_configuration.qbk │ │ ├── server_support.qbk │ │ ├── tutorial.qbk │ │ └── tutorial │ │ │ ├── 10_min_intro.cpp │ │ │ ├── accepting.qbk │ │ │ ├── cookies.qbk │ │ │ ├── hello_world.qbk │ │ │ ├── loading.qbk │ │ │ ├── quickstart.qbk │ │ │ ├── requests.qbk │ │ │ ├── scaling.qbk │ │ │ ├── tutorial.qbk │ │ │ └── variables.qbk │ │ ├── utilities.qbk │ │ └── utilities │ │ ├── sessions.qbk │ │ ├── sessions │ │ ├── sessions.qbk │ │ ├── sessions_quickstart.cpp │ │ └── sessions_quickstart.html │ │ └── stencils.qbk │ ├── example │ ├── Jamfile.v2 │ ├── cgi │ │ ├── DebugServer │ │ │ ├── Jamfile.v2 │ │ │ ├── Timer.hpp │ │ │ ├── TracingServer.cpp │ │ │ ├── TracingServer.hpp │ │ │ └── hello.cpp │ │ ├── DebugServer2 │ │ │ ├── Jamfile.v2 │ │ │ ├── TracebackServer.cpp │ │ │ ├── TracebackServer.hpp │ │ │ ├── ctemplate.cpp │ │ │ ├── debug_view.css │ │ │ ├── debug_view.html │ │ │ ├── debug_view.js │ │ │ └── default_view.html │ │ ├── Jamfile.v2 │ │ ├── authorizer │ │ │ └── main.cpp │ │ ├── cookies │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ ├── index.html │ │ │ ├── main.cpp │ │ │ ├── main.js │ │ │ └── style.css │ │ ├── cookies2 │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ ├── index.html │ │ │ ├── main.cpp │ │ │ ├── main.js │ │ │ └── style.css │ │ ├── custom_sessions │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── doc.qbk │ │ ├── echo │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── file_browser │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── file_browser_debug │ │ │ └── main.cpp │ │ ├── hello_world │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── sessions │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── stencil │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ ├── main.cpp │ │ │ ├── stencil.html │ │ │ └── stencil.include.html │ │ └── upload │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ ├── main.cpp │ │ │ └── upload.html │ ├── doc.qbk │ ├── fcgi │ │ ├── Jamfile.v2 │ │ ├── README │ │ ├── amortization │ │ │ ├── Jamfile.v2 │ │ │ ├── amortization.css │ │ │ ├── amortization.html │ │ │ ├── amortization.js │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── async_echo │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── charts │ │ │ ├── charts.html │ │ │ ├── charts.include.html │ │ │ └── main.cpp │ │ ├── doc.qbk │ │ ├── echo │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── echo_threaded │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── file_browser │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── hello_world │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── server1 │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ ├── main.cpp │ │ │ └── server.hpp │ │ ├── server2 │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── server3 │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ └── main.cpp │ │ ├── server4 │ │ │ ├── Jamfile.v2 │ │ │ └── main.cpp │ │ ├── stencil │ │ │ ├── Jamfile.v2 │ │ │ ├── doc.qbk │ │ │ ├── main.cpp │ │ │ ├── stencil.html │ │ │ └── stencil.include.html │ │ └── upload │ │ │ ├── doc.qbk │ │ │ ├── main.cpp │ │ │ └── upload.html │ └── xcgi │ │ ├── Jamfile.v2 │ │ ├── basic │ │ ├── Jamfile.v2 │ │ ├── doc.qbk │ │ └── main.cpp │ │ ├── doc.qbk │ │ └── server1 │ │ ├── Jamfile.v2 │ │ ├── Server.hpp │ │ ├── doc.qbk │ │ └── main.cpp │ ├── index.html │ ├── src │ └── library_sources.cpp │ └── test │ ├── CMakeLists.txt │ ├── Jamfile.v2 │ ├── compile │ ├── Jamfile.v2 │ ├── acgi_acceptor.cpp │ ├── acgi_request.cpp │ ├── acgi_service.cpp │ ├── async_stdio_connection.cpp │ ├── cgi_header_check.cpp │ ├── cgi_request.cpp │ ├── cgi_service.cpp │ ├── fcgi_acceptor.cpp │ ├── fcgi_request.cpp │ ├── fcgi_service.cpp │ ├── is_async_test.cpp │ ├── response.cpp │ ├── scgi_acceptor.cpp │ ├── scgi_request.cpp │ ├── scgi_service.cpp │ ├── shareable_tcp_connection.cpp │ ├── stdio_connection.cpp │ └── tcp_connection.cpp │ ├── compile_fail │ └── Jamfile.v2 │ └── run │ ├── Jamfile.v2 │ ├── acgi_simple_request.cpp │ ├── cgi_simple_request.cpp │ ├── cgi_test.cpp │ ├── cookie.cpp │ ├── data_map_proxy.cpp │ ├── has_key.cpp │ ├── hello_world.cpp │ ├── map_test.cpp │ ├── name_test.cpp │ ├── parse_options.cpp │ ├── request_data.cpp │ ├── request_test_template.hpp │ ├── response.cpp │ ├── sessions.cpp │ └── stdio_connection.cpp └── project-root.jam /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/README.md -------------------------------------------------------------------------------- /boost/cgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi.hpp -------------------------------------------------------------------------------- /boost/cgi/basic_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/basic_client.hpp -------------------------------------------------------------------------------- /boost/cgi/basic_connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/basic_connection.hpp -------------------------------------------------------------------------------- /boost/cgi/basic_request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/basic_request.hpp -------------------------------------------------------------------------------- /boost/cgi/basic_request_acceptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/basic_request_acceptor.hpp -------------------------------------------------------------------------------- /boost/cgi/cgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/cgi.hpp -------------------------------------------------------------------------------- /boost/cgi/cgi/acceptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/cgi/acceptor.hpp -------------------------------------------------------------------------------- /boost/cgi/cgi/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/cgi/client.hpp -------------------------------------------------------------------------------- /boost/cgi/cgi/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/cgi/request.hpp -------------------------------------------------------------------------------- /boost/cgi/cgi/request_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/cgi/request_service.hpp -------------------------------------------------------------------------------- /boost/cgi/cgi/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/cgi/service.hpp -------------------------------------------------------------------------------- /boost/cgi/cgi/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/cgi/traits.hpp -------------------------------------------------------------------------------- /boost/cgi/common/basic_protocol_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/basic_protocol_service.hpp -------------------------------------------------------------------------------- /boost/cgi/common/commit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/commit.hpp -------------------------------------------------------------------------------- /boost/cgi/common/connection_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/connection_base.hpp -------------------------------------------------------------------------------- /boost/cgi/common/cookie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/cookie.hpp -------------------------------------------------------------------------------- /boost/cgi/common/data_map_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/data_map_proxy.hpp -------------------------------------------------------------------------------- /boost/cgi/common/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/error.hpp -------------------------------------------------------------------------------- /boost/cgi/common/form_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/form_parser.hpp -------------------------------------------------------------------------------- /boost/cgi/common/form_part.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/form_part.hpp -------------------------------------------------------------------------------- /boost/cgi/common/has_hidden_io_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/has_hidden_io_service.hpp -------------------------------------------------------------------------------- /boost/cgi/common/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/header.hpp -------------------------------------------------------------------------------- /boost/cgi/common/io_service_provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/io_service_provider.hpp -------------------------------------------------------------------------------- /boost/cgi/common/is_async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/is_async.hpp -------------------------------------------------------------------------------- /boost/cgi/common/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/map.hpp -------------------------------------------------------------------------------- /boost/cgi/common/name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/name.hpp -------------------------------------------------------------------------------- /boost/cgi/common/parse_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/parse_options.hpp -------------------------------------------------------------------------------- /boost/cgi/common/path_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/path_info.hpp -------------------------------------------------------------------------------- /boost/cgi/common/protocol_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/protocol_traits.hpp -------------------------------------------------------------------------------- /boost/cgi/common/request_acceptor_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/request_acceptor_service.hpp -------------------------------------------------------------------------------- /boost/cgi/common/request_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/request_base.hpp -------------------------------------------------------------------------------- /boost/cgi/common/request_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/request_data.hpp -------------------------------------------------------------------------------- /boost/cgi/common/request_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/request_service.hpp -------------------------------------------------------------------------------- /boost/cgi/common/request_status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/request_status.hpp -------------------------------------------------------------------------------- /boost/cgi/common/response.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/response.hpp -------------------------------------------------------------------------------- /boost/cgi/common/role_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/role_type.hpp -------------------------------------------------------------------------------- /boost/cgi/common/source_enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/source_enums.hpp -------------------------------------------------------------------------------- /boost/cgi/common/tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/common/tags.hpp -------------------------------------------------------------------------------- /boost/cgi/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/config.hpp -------------------------------------------------------------------------------- /boost/cgi/connections/anonymous_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/connections/anonymous_pipe.hpp -------------------------------------------------------------------------------- /boost/cgi/connections/async_stdio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/connections/async_stdio.hpp -------------------------------------------------------------------------------- /boost/cgi/connections/shareable_tcp_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/connections/shareable_tcp_socket.hpp -------------------------------------------------------------------------------- /boost/cgi/connections/stdio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/connections/stdio.hpp -------------------------------------------------------------------------------- /boost/cgi/connections/tcp_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/connections/tcp_socket.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/basic_io_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/basic_io_object.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/basic_sync_io_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/basic_sync_io_object.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/common_headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/common_headers.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/coroutine.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/extract_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/extract_params.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/is_multimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/is_multimap.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/pop_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/pop_options.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/push_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/push_options.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/save_environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/save_environment.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/service_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/service_base.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/service_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/service_id.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/throw_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/throw_error.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/unyield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/unyield.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/url_decode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/url_decode.hpp -------------------------------------------------------------------------------- /boost/cgi/detail/url_decode.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/url_decode.ipp -------------------------------------------------------------------------------- /boost/cgi/detail/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/detail/yield.hpp -------------------------------------------------------------------------------- /boost/cgi/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/error.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/acceptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/acceptor.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/acceptor_service_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/acceptor_service_impl.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/client.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/error.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/fcgi_connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/fcgi_connection.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/request.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/request_acceptor_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/request_acceptor_service.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/request_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/request_fwd.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/request_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/request_service.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/response.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/response.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/service.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/specification.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/specification.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/traits.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/transport_selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/transport_selection.hpp -------------------------------------------------------------------------------- /boost/cgi/fcgi/win32_acceptor_service_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fcgi/win32_acceptor_service_impl.hpp -------------------------------------------------------------------------------- /boost/cgi/fwd/basic_client_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fwd/basic_client_fwd.hpp -------------------------------------------------------------------------------- /boost/cgi/fwd/basic_connection_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fwd/basic_connection_fwd.hpp -------------------------------------------------------------------------------- /boost/cgi/fwd/basic_protocol_service_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fwd/basic_protocol_service_fwd.hpp -------------------------------------------------------------------------------- /boost/cgi/fwd/basic_request_acceptor_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fwd/basic_request_acceptor_fwd.hpp -------------------------------------------------------------------------------- /boost/cgi/fwd/basic_request_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fwd/basic_request_fwd.hpp -------------------------------------------------------------------------------- /boost/cgi/fwd/data_map_proxy_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fwd/data_map_proxy_fwd.hpp -------------------------------------------------------------------------------- /boost/cgi/fwd/form_parser_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fwd/form_parser_fwd.hpp -------------------------------------------------------------------------------- /boost/cgi/fwd/io_service_provider_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fwd/io_service_provider_fwd.hpp -------------------------------------------------------------------------------- /boost/cgi/fwd/request_service_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fwd/request_service_fwd.hpp -------------------------------------------------------------------------------- /boost/cgi/fwd/sessions_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/fwd/sessions_fwd.hpp -------------------------------------------------------------------------------- /boost/cgi/http/status_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/http/status_code.hpp -------------------------------------------------------------------------------- /boost/cgi/impl/basic_request.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/impl/basic_request.ipp -------------------------------------------------------------------------------- /boost/cgi/impl/fcgi_request_service.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/impl/fcgi_request_service.ipp -------------------------------------------------------------------------------- /boost/cgi/impl/form_parser.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/impl/form_parser.ipp -------------------------------------------------------------------------------- /boost/cgi/impl/response.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/impl/response.ipp -------------------------------------------------------------------------------- /boost/cgi/import/basic_io_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/import/basic_io_object.hpp -------------------------------------------------------------------------------- /boost/cgi/import/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/import/buffer.hpp -------------------------------------------------------------------------------- /boost/cgi/import/io_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/import/io_service.hpp -------------------------------------------------------------------------------- /boost/cgi/import/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/import/read.hpp -------------------------------------------------------------------------------- /boost/cgi/import/streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/import/streambuf.hpp -------------------------------------------------------------------------------- /boost/cgi/import/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/import/write.hpp -------------------------------------------------------------------------------- /boost/cgi/scgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi.hpp -------------------------------------------------------------------------------- /boost/cgi/scgi/acceptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/acceptor.hpp -------------------------------------------------------------------------------- /boost/cgi/scgi/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/client.hpp -------------------------------------------------------------------------------- /boost/cgi/scgi/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/error.hpp -------------------------------------------------------------------------------- /boost/cgi/scgi/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/request.hpp -------------------------------------------------------------------------------- /boost/cgi/scgi/request_acceptor_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/request_acceptor_service.hpp -------------------------------------------------------------------------------- /boost/cgi/scgi/request_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/request_impl.hpp -------------------------------------------------------------------------------- /boost/cgi/scgi/request_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/request_parser.hpp -------------------------------------------------------------------------------- /boost/cgi/scgi/request_parser.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/request_parser.ipp -------------------------------------------------------------------------------- /boost/cgi/scgi/request_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/request_service.hpp -------------------------------------------------------------------------------- /boost/cgi/scgi/request_service.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/request_service.ipp -------------------------------------------------------------------------------- /boost/cgi/scgi/service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/service.hpp -------------------------------------------------------------------------------- /boost/cgi/scgi/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/scgi/traits.hpp -------------------------------------------------------------------------------- /boost/cgi/utility/redirect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/utility/redirect.hpp -------------------------------------------------------------------------------- /boost/cgi/utility/sessions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/utility/sessions.hpp -------------------------------------------------------------------------------- /boost/cgi/utility/stencil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/boost/cgi/utility/stencil.hpp -------------------------------------------------------------------------------- /libs/cgi/build/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/0.fcgi_template/fcgi_file_browser.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/0.fcgi_template/fcgi_file_browser.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/Amortization/Amortization.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/Amortization/Amortization.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/Amortization/Amortization.vcproj.360-SYSTEMS.darreng.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/Amortization/Amortization.vcproj.360-SYSTEMS.darreng.user -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/Boost.CGI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/Boost.CGI.sln -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_cookie_game/cgi_cookie_game.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_cookie_game/cgi_cookie_game.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_cookies/cgi_cookies.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_cookies/cgi_cookies.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_ctemplate_cookie_game/cgi_ctemplate_cookie_game.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_ctemplate_cookie_game/cgi_ctemplate_cookie_game.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_ctemplate_debug_server/cgi_ctemplate_debug_server.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_ctemplate_debug_server/cgi_ctemplate_debug_server.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_ctemplate_debug_server/cgi_ctemplate_debug_server.vcproj.360-SYSTEMS.darreng.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_ctemplate_debug_server/cgi_ctemplate_debug_server.vcproj.360-SYSTEMS.darreng.user -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_debug_server/cgi_debug_server.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_debug_server/cgi_debug_server.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_debug_server/cgi_debug_server.vcproj.360-SYSTEMS.darreng.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_debug_server/cgi_debug_server.vcproj.360-SYSTEMS.darreng.user -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_echo/cgi_echo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_echo/cgi_echo.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_echo/cgi_echo.vcproj.360-SYSTEMS.darreng.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_echo/cgi_echo.vcproj.360-SYSTEMS.darreng.user -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_file_browser/cgi_file_browser.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_file_browser/cgi_file_browser.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_file_browser_debug/cgi_file_browser_debug.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_file_browser_debug/cgi_file_browser_debug.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_hello_world/cgi_hello_world.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_hello_world/cgi_hello_world.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_hello_world/cgi_hello_world.vcproj.360-SYSTEMS.darreng.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_hello_world/cgi_hello_world.vcproj.360-SYSTEMS.darreng.user -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_quickstart/cgi_quickstart.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_quickstart/cgi_quickstart.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_sessions/cgi_sessions.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_sessions/cgi_sessions.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_stencil/cgi_stencil.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_stencil/cgi_stencil.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/cgi_upload/cgi_upload.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/cgi_upload/cgi_upload.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fastcgi_quickstart/fastcgi_quickstart.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fastcgi_quickstart/fastcgi_quickstart.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_amortization/fcgi_amortization.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_amortization/fcgi_amortization.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_async_echo/fcgi_async_echo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_async_echo/fcgi_async_echo.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_echo/fcgi_echo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_echo/fcgi_echo.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_echo_threaded/fcgi_echo_threaded.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_echo_threaded/fcgi_echo_threaded.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_file_browser/fcgi_file_browser.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_file_browser/fcgi_file_browser.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_hello_world/fcgi_hello_world.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_hello_world/fcgi_hello_world.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_hello_world/fcgi_hello_world.vcproj.360-SYSTEMS.darreng.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_hello_world/fcgi_hello_world.vcproj.360-SYSTEMS.darreng.user -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_stencil/fcgi_stencil.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_stencil/fcgi_stencil.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_stencil/templates/stencil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_stencil/templates/stencil.html -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_stencil/templates/stencil.include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_stencil/templates/stencil.include.html -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_upload/fcgi_upload.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/fcgi_upload/fcgi_upload.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/sessions_quickstart/sessions_quickstart.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/sessions_quickstart/sessions_quickstart.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/xcgi_server1/xcgi_server1.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/xcgi_server1/xcgi_server1.vcproj -------------------------------------------------------------------------------- /libs/cgi/build/msvc/9.0/Boost.CGI/xcgi_server1/xcgi_server1.vcproj.360-SYSTEMS.darreng.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/build/msvc/9.0/Boost.CGI/xcgi_server1/xcgi_server1.vcproj.360-SYSTEMS.darreng.user -------------------------------------------------------------------------------- /libs/cgi/doc/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/doc/cgi.qbk: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/cgi/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/index.html -------------------------------------------------------------------------------- /libs/cgi/doc/src/acknowledgements.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/acknowledgements.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/cgi.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/cgi.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/design.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/design.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/examples.qbk: -------------------------------------------------------------------------------- 1 | 2 | [include ../example/doc.qbk] 3 | -------------------------------------------------------------------------------- /libs/cgi/doc/src/future_development.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/future_development.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/1.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/10.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/11.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/12.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/13.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/14.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/15.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/2.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/3.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/4.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/5.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/6.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/7.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/8.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/images/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/images/callouts/9.png -------------------------------------------------------------------------------- /libs/cgi/doc/src/introduction.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/introduction.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/library_organisation.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/library_organisation.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/links.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/links.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/overview.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/overview.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/overview/acceptors.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/overview/acceptors.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/overview/clients.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/overview/clients.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/overview/requests.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/overview/requests.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/overview/requests/loading.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/overview/requests/loading.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/overview/responses.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/overview/responses.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/overview/services.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/overview/services.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/overview/sessions.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/overview/sessions.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/overview/traits.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/overview/traits.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/preface.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/preface.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/reference.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/reference.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/status.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/status.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tips.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tips.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/troubleshooting.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/troubleshooting.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/cgi.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/cgi.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/cgi_quickstart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/cgi_quickstart.cpp -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/cookies.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/cookies.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/fastcgi.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/fastcgi.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/fastcgi_quickstart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/fastcgi_quickstart.cpp -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/hello_world.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/hello_world.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/installation.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/installation.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/quickstart.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/quickstart.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/requests.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/requests.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/running.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/running.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/scaling.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/scaling.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/tutorial.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/tutorial.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/tutorial/variables.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/tutorial/variables.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/async_ops.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/async_ops.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/building.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/building.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/getting_started.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/getting_started.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/handling_requests.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/handling_requests.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/headers.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/headers.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/protocols.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/protocols.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/request_objects.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/request_objects.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/server_configuration.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/server_configuration.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/server_support.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/server_support.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/tutorial.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/tutorial.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/tutorial/10_min_intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/tutorial/10_min_intro.cpp -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/tutorial/accepting.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/tutorial/accepting.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/tutorial/cookies.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/tutorial/cookies.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/tutorial/hello_world.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/tutorial/hello_world.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/tutorial/loading.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/tutorial/loading.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/tutorial/quickstart.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/tutorial/quickstart.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/tutorial/requests.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/tutorial/requests.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/tutorial/scaling.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/tutorial/scaling.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/tutorial/tutorial.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/tutorial/tutorial.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/user_guide/tutorial/variables.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/user_guide/tutorial/variables.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/utilities.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/utilities.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/utilities/sessions.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/utilities/sessions.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/utilities/sessions/sessions.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/utilities/sessions/sessions.qbk -------------------------------------------------------------------------------- /libs/cgi/doc/src/utilities/sessions/sessions_quickstart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/utilities/sessions/sessions_quickstart.cpp -------------------------------------------------------------------------------- /libs/cgi/doc/src/utilities/sessions/sessions_quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/utilities/sessions/sessions_quickstart.html -------------------------------------------------------------------------------- /libs/cgi/doc/src/utilities/stencils.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/doc/src/utilities/stencils.qbk -------------------------------------------------------------------------------- /libs/cgi/example/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer/Timer.hpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer/TracingServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer/TracingServer.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer/TracingServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer/TracingServer.hpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer/hello.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer2/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer2/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer2/TracebackServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer2/TracebackServer.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer2/TracebackServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer2/TracebackServer.hpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer2/ctemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer2/ctemplate.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer2/debug_view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer2/debug_view.css -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer2/debug_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer2/debug_view.html -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer2/debug_view.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/cgi/example/cgi/DebugServer2/default_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/DebugServer2/default_view.html -------------------------------------------------------------------------------- /libs/cgi/example/cgi/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/authorizer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/authorizer/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies/index.html -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies/main.js -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies/style.css -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies2/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies2/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies2/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies2/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies2/index.html -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies2/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies2/main.js -------------------------------------------------------------------------------- /libs/cgi/example/cgi/cookies2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/cookies2/style.css -------------------------------------------------------------------------------- /libs/cgi/example/cgi/custom_sessions/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/custom_sessions/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/custom_sessions/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/custom_sessions/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/cgi/custom_sessions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/custom_sessions/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/cgi/echo/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/echo/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/echo/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/echo/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/cgi/echo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/echo/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/file_browser/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/file_browser/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/file_browser/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/file_browser/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/cgi/file_browser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/file_browser/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/file_browser_debug/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/file_browser_debug/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/hello_world/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/hello_world/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/hello_world/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/hello_world/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/cgi/hello_world/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/hello_world/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/sessions/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/sessions/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/sessions/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/sessions/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/cgi/sessions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/sessions/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/stencil/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/stencil/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/stencil/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/stencil/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/cgi/stencil/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/stencil/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/stencil/stencil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/stencil/stencil.html -------------------------------------------------------------------------------- /libs/cgi/example/cgi/stencil/stencil.include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/stencil/stencil.include.html -------------------------------------------------------------------------------- /libs/cgi/example/cgi/upload/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/upload/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/cgi/upload/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/upload/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/cgi/upload/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/upload/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/cgi/upload/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/cgi/upload/upload.html -------------------------------------------------------------------------------- /libs/cgi/example/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/README -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/amortization/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/amortization/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/amortization/amortization.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/amortization/amortization.css -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/amortization/amortization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/amortization/amortization.html -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/amortization/amortization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/amortization/amortization.js -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/amortization/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/amortization/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/amortization/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/amortization/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/async_echo/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/async_echo/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/async_echo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/async_echo/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/charts/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/charts/charts.html -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/charts/charts.include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/charts/charts.include.html -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/charts/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/charts/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/echo/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/echo/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/echo/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/echo/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/echo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/echo/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/echo_threaded/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/echo_threaded/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/echo_threaded/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/echo_threaded/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/echo_threaded/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/echo_threaded/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/file_browser/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/file_browser/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/file_browser/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/file_browser/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/file_browser/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/file_browser/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/hello_world/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/hello_world/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/hello_world/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/hello_world/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/hello_world/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/hello_world/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server1/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server1/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server1/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server1/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server1/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server1/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server1/server.hpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server2/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server2/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server2/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server2/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server2/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server3/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server3/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server3/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server3/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server3/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server4/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server4/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/server4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/server4/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/stencil/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/stencil/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/stencil/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/stencil/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/stencil/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/stencil/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/stencil/stencil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/stencil/stencil.html -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/stencil/stencil.include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/stencil/stencil.include.html -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/upload/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/upload/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/upload/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/upload/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/fcgi/upload/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/fcgi/upload/upload.html -------------------------------------------------------------------------------- /libs/cgi/example/xcgi/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/xcgi/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/xcgi/basic/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/xcgi/basic/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/xcgi/basic/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/xcgi/basic/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/xcgi/basic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/xcgi/basic/main.cpp -------------------------------------------------------------------------------- /libs/cgi/example/xcgi/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/xcgi/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/xcgi/server1/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/xcgi/server1/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/example/xcgi/server1/Server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/xcgi/server1/Server.hpp -------------------------------------------------------------------------------- /libs/cgi/example/xcgi/server1/doc.qbk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/xcgi/server1/doc.qbk -------------------------------------------------------------------------------- /libs/cgi/example/xcgi/server1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/example/xcgi/server1/main.cpp -------------------------------------------------------------------------------- /libs/cgi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/index.html -------------------------------------------------------------------------------- /libs/cgi/src/library_sources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/src/library_sources.cpp -------------------------------------------------------------------------------- /libs/cgi/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/CMakeLists.txt -------------------------------------------------------------------------------- /libs/cgi/test/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/test/compile/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/test/compile/acgi_acceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/acgi_acceptor.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/acgi_request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/acgi_request.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/acgi_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/acgi_service.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/async_stdio_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/async_stdio_connection.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/cgi_header_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/cgi_header_check.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/cgi_request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/cgi_request.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/cgi_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/cgi_service.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/fcgi_acceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/fcgi_acceptor.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/fcgi_request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/fcgi_request.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/fcgi_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/fcgi_service.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/is_async_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/is_async_test.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/response.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/scgi_acceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/scgi_acceptor.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/scgi_request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/scgi_request.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/scgi_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/scgi_service.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/shareable_tcp_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/shareable_tcp_connection.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/stdio_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/stdio_connection.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile/tcp_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile/tcp_connection.cpp -------------------------------------------------------------------------------- /libs/cgi/test/compile_fail/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/compile_fail/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/test/run/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/Jamfile.v2 -------------------------------------------------------------------------------- /libs/cgi/test/run/acgi_simple_request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/acgi_simple_request.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/cgi_simple_request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/cgi_simple_request.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/cgi_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/cgi_test.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/cookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/cookie.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/data_map_proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/data_map_proxy.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/has_key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/has_key.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/hello_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/hello_world.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/map_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/map_test.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/name_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/name_test.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/parse_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/parse_options.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/request_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/request_data.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/request_test_template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/request_test_template.hpp -------------------------------------------------------------------------------- /libs/cgi/test/run/response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/response.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/sessions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/sessions.cpp -------------------------------------------------------------------------------- /libs/cgi/test/run/stdio_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/libs/cgi/test/run/stdio_connection.cpp -------------------------------------------------------------------------------- /project-root.jam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darrengarvey/cgi/HEAD/project-root.jam --------------------------------------------------------------------------------