#include "asio/detail/push_options.hpp"#include <algorithm>#include <limits>#include <string>#include <utility>#include "asio/detail/pop_options.hpp"#include "asio/buffer.hpp"#include "asio/detail/bind_handler.hpp"#include "asio/detail/const_buffers_iterator.hpp"#include "asio/detail/handler_alloc_helpers.hpp"#include "asio/detail/handler_invoke_helpers.hpp"#include "asio/detail/throw_error.hpp"Go to the source code of this file.
Namespaces | |
| namespace | asio |
| namespace | asio::detail |
Classes | |
| class | asio::detail::read_until_delim_handler< AsyncReadStream, Allocator, ReadHandler > |
| class | asio::detail::read_until_delim_string_handler< AsyncReadStream, Allocator, ReadHandler > |
| class | asio::detail::read_until_expr_handler< AsyncReadStream, Allocator, ReadHandler > |
Functions | |
| template<typename SyncReadStream, typename Allocator> | |
| std::size_t | asio::read_until (SyncReadStream &s, asio::basic_streambuf< Allocator > &b, char delim) |
| Read data into a streambuf until a delimiter is encountered. | |
| template<typename SyncReadStream, typename Allocator> | |
| std::size_t | asio::read_until (SyncReadStream &s, asio::basic_streambuf< Allocator > &b, char delim, asio::error_code &ec) |
| Read data into a streambuf until a delimiter is encountered. | |
| template<typename SyncReadStream, typename Allocator> | |
| std::size_t | asio::read_until (SyncReadStream &s, asio::basic_streambuf< Allocator > &b, const std::string &delim) |
| Read data into a streambuf until a delimiter is encountered. | |
| template<typename Iterator1, typename Iterator2> | |
| std::pair< Iterator1, bool > | asio::detail::partial_search (Iterator1 first1, Iterator1 last1, Iterator2 first2, Iterator2 last2) |
| template<typename SyncReadStream, typename Allocator> | |
| std::size_t | asio::read_until (SyncReadStream &s, asio::basic_streambuf< Allocator > &b, const std::string &delim, asio::error_code &ec) |
| Read data into a streambuf until a delimiter is encountered. | |
| template<typename SyncReadStream, typename Allocator> | |
| std::size_t | asio::read_until (SyncReadStream &s, asio::basic_streambuf< Allocator > &b, const boost::regex &expr) |
| Read data into a streambuf until a regular expression is located. | |
| template<typename SyncReadStream, typename Allocator> | |
| std::size_t | asio::read_until (SyncReadStream &s, asio::basic_streambuf< Allocator > &b, const boost::regex &expr, asio::error_code &ec) |
| Read data into a streambuf until a regular expression is located. | |
| template<typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void * | asio::detail::asio_handler_allocate (std::size_t size, read_until_delim_handler< AsyncReadStream, Allocator, ReadHandler > *this_handler) |
| template<typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void | asio::detail::asio_handler_deallocate (void *pointer, std::size_t size, read_until_delim_handler< AsyncReadStream, Allocator, ReadHandler > *this_handler) |
| template<typename Function, typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void | asio::detail::asio_handler_invoke (const Function &function, read_until_delim_handler< AsyncReadStream, Allocator, ReadHandler > *this_handler) |
| template<typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void | asio::async_read_until (AsyncReadStream &s, asio::basic_streambuf< Allocator > &b, char delim, ReadHandler handler) |
| template<typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void * | asio::detail::asio_handler_allocate (std::size_t size, read_until_delim_string_handler< AsyncReadStream, Allocator, ReadHandler > *this_handler) |
| template<typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void | asio::detail::asio_handler_deallocate (void *pointer, std::size_t size, read_until_delim_string_handler< AsyncReadStream, Allocator, ReadHandler > *this_handler) |
| template<typename Function, typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void | asio::detail::asio_handler_invoke (const Function &function, read_until_delim_string_handler< AsyncReadStream, Allocator, ReadHandler > *this_handler) |
| template<typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void | asio::async_read_until (AsyncReadStream &s, asio::basic_streambuf< Allocator > &b, const std::string &delim, ReadHandler handler) |
| template<typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void * | asio::detail::asio_handler_allocate (std::size_t size, read_until_expr_handler< AsyncReadStream, Allocator, ReadHandler > *this_handler) |
| template<typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void | asio::detail::asio_handler_deallocate (void *pointer, std::size_t size, read_until_expr_handler< AsyncReadStream, Allocator, ReadHandler > *this_handler) |
| template<typename Function, typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void | asio::detail::asio_handler_invoke (const Function &function, read_until_expr_handler< AsyncReadStream, Allocator, ReadHandler > *this_handler) |
| template<typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void | asio::async_read_until (AsyncReadStream &s, asio::basic_streambuf< Allocator > &b, const boost::regex &expr, ReadHandler handler) |
1.5.6