358 lines
23 KiB
HTML
358 lines
23 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>read_until</title>
|
|
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
|
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
|
<link rel="home" href="../../boost_asio.html" title="Boost.Asio">
|
|
<link rel="up" href="../reference.html" title="Reference">
|
|
<link rel="prev" href="read_at/overload8.html" title="read_at (8 of 8 overloads)">
|
|
<link rel="next" href="read_until/overload1.html" title="read_until (1 of 24 overloads)">
|
|
</head>
|
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
|
<table cellpadding="2" width="100%"><tr>
|
|
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td>
|
|
<td align="center"><a href="../../../../index.html">Home</a></td>
|
|
<td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td>
|
|
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
|
|
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
|
|
<td align="center"><a href="../../../../more/index.htm">More</a></td>
|
|
</tr></table>
|
|
<hr>
|
|
<div class="spirit-nav">
|
|
<a accesskey="p" href="read_at/overload8.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.html"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../boost_asio.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="read_until/overload1.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
|
|
</div>
|
|
<div class="section">
|
|
<div class="titlepage"><div><div><h3 class="title">
|
|
<a name="boost_asio.reference.read_until"></a><a class="link" href="read_until.html" title="read_until">read_until</a>
|
|
</h3></div></div></div>
|
|
<p>
|
|
<a class="indexterm" name="boost_asio.indexterm.read_until"></a>
|
|
The <code class="computeroutput">read_until</code> function
|
|
is a composed operation that reads data into a dynamic buffer sequence, or
|
|
into a streambuf, until it contains a delimiter, matches a regular expression,
|
|
or a function object indicates a match.
|
|
</p>
|
|
<p>
|
|
Read data into a dynamic buffer sequence until it contains a specified delimiter.
|
|
</p>
|
|
<pre class="programlisting">template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v1.html" title="Dynamic buffer requirements (version 1)">DynamicBuffer_v1</a>>
|
|
std::size_t <a class="link" href="read_until/overload1.html" title="read_until (1 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v1 && buffers,
|
|
char delim,
|
|
typename constraint< is_dynamic_buffer_v1< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0,
|
|
typename constraint< !is_dynamic_buffer_v2< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload1.html" title="read_until (1 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v1.html" title="Dynamic buffer requirements (version 1)">DynamicBuffer_v1</a>>
|
|
std::size_t <a class="link" href="read_until/overload2.html" title="read_until (2 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v1 && buffers,
|
|
char delim,
|
|
boost::system::error_code & ec,
|
|
typename constraint< is_dynamic_buffer_v1< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0,
|
|
typename constraint< !is_dynamic_buffer_v2< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload2.html" title="read_until (2 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v1.html" title="Dynamic buffer requirements (version 1)">DynamicBuffer_v1</a>>
|
|
std::size_t <a class="link" href="read_until/overload3.html" title="read_until (3 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v1 && buffers,
|
|
string_view delim,
|
|
typename constraint< is_dynamic_buffer_v1< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0,
|
|
typename constraint< !is_dynamic_buffer_v2< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload3.html" title="read_until (3 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v1.html" title="Dynamic buffer requirements (version 1)">DynamicBuffer_v1</a>>
|
|
std::size_t <a class="link" href="read_until/overload4.html" title="read_until (4 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v1 && buffers,
|
|
string_view delim,
|
|
boost::system::error_code & ec,
|
|
typename constraint< is_dynamic_buffer_v1< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0,
|
|
typename constraint< !is_dynamic_buffer_v2< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload4.html" title="read_until (4 of 24 overloads)">more...</a></em></span>
|
|
</pre>
|
|
<p>
|
|
Read data into a dynamic buffer sequence until some part of the data it contains
|
|
matches a regular expression.
|
|
</p>
|
|
<pre class="programlisting">template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v1.html" title="Dynamic buffer requirements (version 1)">DynamicBuffer_v1</a>>
|
|
std::size_t <a class="link" href="read_until/overload5.html" title="read_until (5 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v1 && buffers,
|
|
const boost::regex & expr,
|
|
typename constraint< is_dynamic_buffer_v1< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0,
|
|
typename constraint< !is_dynamic_buffer_v2< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload5.html" title="read_until (5 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v1.html" title="Dynamic buffer requirements (version 1)">DynamicBuffer_v1</a>>
|
|
std::size_t <a class="link" href="read_until/overload6.html" title="read_until (6 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v1 && buffers,
|
|
const boost::regex & expr,
|
|
boost::system::error_code & ec,
|
|
typename constraint< is_dynamic_buffer_v1< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0,
|
|
typename constraint< !is_dynamic_buffer_v2< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload6.html" title="read_until (6 of 24 overloads)">more...</a></em></span>
|
|
</pre>
|
|
<p>
|
|
Read data into a dynamic buffer sequence until a function object indicates
|
|
a match.
|
|
</p>
|
|
<pre class="programlisting">template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v1.html" title="Dynamic buffer requirements (version 1)">DynamicBuffer_v1</a>,
|
|
typename MatchCondition>
|
|
std::size_t <a class="link" href="read_until/overload7.html" title="read_until (7 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v1 && buffers,
|
|
MatchCondition match_condition,
|
|
typename constraint< is_match_condition< MatchCondition >::value >::type = 0,
|
|
typename constraint< is_dynamic_buffer_v1< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0,
|
|
typename constraint< !is_dynamic_buffer_v2< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload7.html" title="read_until (7 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v1.html" title="Dynamic buffer requirements (version 1)">DynamicBuffer_v1</a>,
|
|
typename MatchCondition>
|
|
std::size_t <a class="link" href="read_until/overload8.html" title="read_until (8 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v1 && buffers,
|
|
MatchCondition match_condition,
|
|
boost::system::error_code & ec,
|
|
typename constraint< is_match_condition< MatchCondition >::value >::type = 0,
|
|
typename constraint< is_dynamic_buffer_v1< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0,
|
|
typename constraint< !is_dynamic_buffer_v2< typename decay< DynamicBuffer_v1 >::type >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload8.html" title="read_until (8 of 24 overloads)">more...</a></em></span>
|
|
</pre>
|
|
<p>
|
|
Read data into a streambuf until it contains a specified delimiter.
|
|
</p>
|
|
<pre class="programlisting">template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename Allocator>
|
|
std::size_t <a class="link" href="read_until/overload9.html" title="read_until (9 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
boost::asio::basic_streambuf< Allocator > & b,
|
|
char delim);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload9.html" title="read_until (9 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename Allocator>
|
|
std::size_t <a class="link" href="read_until/overload10.html" title="read_until (10 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
boost::asio::basic_streambuf< Allocator > & b,
|
|
char delim,
|
|
boost::system::error_code & ec);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload10.html" title="read_until (10 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename Allocator>
|
|
std::size_t <a class="link" href="read_until/overload11.html" title="read_until (11 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
boost::asio::basic_streambuf< Allocator > & b,
|
|
string_view delim);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload11.html" title="read_until (11 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename Allocator>
|
|
std::size_t <a class="link" href="read_until/overload12.html" title="read_until (12 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
boost::asio::basic_streambuf< Allocator > & b,
|
|
string_view delim,
|
|
boost::system::error_code & ec);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload12.html" title="read_until (12 of 24 overloads)">more...</a></em></span>
|
|
</pre>
|
|
<p>
|
|
Read data into a streambuf until some part of the data it contains matches
|
|
a regular expression.
|
|
</p>
|
|
<pre class="programlisting">template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename Allocator>
|
|
std::size_t <a class="link" href="read_until/overload13.html" title="read_until (13 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
boost::asio::basic_streambuf< Allocator > & b,
|
|
const boost::regex & expr);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload13.html" title="read_until (13 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename Allocator>
|
|
std::size_t <a class="link" href="read_until/overload14.html" title="read_until (14 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
boost::asio::basic_streambuf< Allocator > & b,
|
|
const boost::regex & expr,
|
|
boost::system::error_code & ec);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload14.html" title="read_until (14 of 24 overloads)">more...</a></em></span>
|
|
</pre>
|
|
<p>
|
|
Read data into a streambuf until a function object indicates a match.
|
|
</p>
|
|
<pre class="programlisting">template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename Allocator,
|
|
typename MatchCondition>
|
|
std::size_t <a class="link" href="read_until/overload15.html" title="read_until (15 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
boost::asio::basic_streambuf< Allocator > & b,
|
|
MatchCondition match_condition,
|
|
typename constraint< is_match_condition< MatchCondition >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload15.html" title="read_until (15 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename Allocator,
|
|
typename MatchCondition>
|
|
std::size_t <a class="link" href="read_until/overload16.html" title="read_until (16 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
boost::asio::basic_streambuf< Allocator > & b,
|
|
MatchCondition match_condition,
|
|
boost::system::error_code & ec,
|
|
typename constraint< is_match_condition< MatchCondition >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload16.html" title="read_until (16 of 24 overloads)">more...</a></em></span>
|
|
</pre>
|
|
<p>
|
|
Read data into a dynamic buffer sequence until it contains a specified delimiter.
|
|
</p>
|
|
<pre class="programlisting">template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v2.html" title="Dynamic buffer requirements (version 2)">DynamicBuffer_v2</a>>
|
|
std::size_t <a class="link" href="read_until/overload17.html" title="read_until (17 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v2 buffers,
|
|
char delim,
|
|
typename constraint< is_dynamic_buffer_v2< DynamicBuffer_v2 >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload17.html" title="read_until (17 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v2.html" title="Dynamic buffer requirements (version 2)">DynamicBuffer_v2</a>>
|
|
std::size_t <a class="link" href="read_until/overload18.html" title="read_until (18 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v2 buffers,
|
|
char delim,
|
|
boost::system::error_code & ec,
|
|
typename constraint< is_dynamic_buffer_v2< DynamicBuffer_v2 >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload18.html" title="read_until (18 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v2.html" title="Dynamic buffer requirements (version 2)">DynamicBuffer_v2</a>>
|
|
std::size_t <a class="link" href="read_until/overload19.html" title="read_until (19 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v2 buffers,
|
|
string_view delim,
|
|
typename constraint< is_dynamic_buffer_v2< DynamicBuffer_v2 >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload19.html" title="read_until (19 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v2.html" title="Dynamic buffer requirements (version 2)">DynamicBuffer_v2</a>>
|
|
std::size_t <a class="link" href="read_until/overload20.html" title="read_until (20 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v2 buffers,
|
|
string_view delim,
|
|
boost::system::error_code & ec,
|
|
typename constraint< is_dynamic_buffer_v2< DynamicBuffer_v2 >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload20.html" title="read_until (20 of 24 overloads)">more...</a></em></span>
|
|
</pre>
|
|
<p>
|
|
Read data into a dynamic buffer sequence until some part of the data it contains
|
|
matches a regular expression.
|
|
</p>
|
|
<pre class="programlisting">template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v2.html" title="Dynamic buffer requirements (version 2)">DynamicBuffer_v2</a>>
|
|
std::size_t <a class="link" href="read_until/overload21.html" title="read_until (21 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v2 buffers,
|
|
const boost::regex & expr,
|
|
typename constraint< is_dynamic_buffer_v2< DynamicBuffer_v2 >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload21.html" title="read_until (21 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v2.html" title="Dynamic buffer requirements (version 2)">DynamicBuffer_v2</a>>
|
|
std::size_t <a class="link" href="read_until/overload22.html" title="read_until (22 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v2 buffers,
|
|
const boost::regex & expr,
|
|
boost::system::error_code & ec,
|
|
typename constraint< is_dynamic_buffer_v2< DynamicBuffer_v2 >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload22.html" title="read_until (22 of 24 overloads)">more...</a></em></span>
|
|
</pre>
|
|
<p>
|
|
Read data into a dynamic buffer sequence until a function object indicates
|
|
a match.
|
|
</p>
|
|
<pre class="programlisting">template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v2.html" title="Dynamic buffer requirements (version 2)">DynamicBuffer_v2</a>,
|
|
typename MatchCondition>
|
|
std::size_t <a class="link" href="read_until/overload23.html" title="read_until (23 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v2 buffers,
|
|
MatchCondition match_condition,
|
|
typename constraint< is_match_condition< MatchCondition >::value >::type = 0,
|
|
typename constraint< is_dynamic_buffer_v2< DynamicBuffer_v2 >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload23.html" title="read_until (23 of 24 overloads)">more...</a></em></span>
|
|
|
|
template<
|
|
typename <a class="link" href="SyncReadStream.html" title="Buffer-oriented synchronous read stream requirements">SyncReadStream</a>,
|
|
typename <a class="link" href="DynamicBuffer_v2.html" title="Dynamic buffer requirements (version 2)">DynamicBuffer_v2</a>,
|
|
typename MatchCondition>
|
|
std::size_t <a class="link" href="read_until/overload24.html" title="read_until (24 of 24 overloads)">read_until</a>(
|
|
SyncReadStream & s,
|
|
DynamicBuffer_v2 buffers,
|
|
MatchCondition match_condition,
|
|
boost::system::error_code & ec,
|
|
typename constraint< is_match_condition< MatchCondition >::value >::type = 0,
|
|
typename constraint< is_dynamic_buffer_v2< DynamicBuffer_v2 >::value >::type = 0);
|
|
<span class="emphasis"><em>» <a class="link" href="read_until/overload24.html" title="read_until (24 of 24 overloads)">more...</a></em></span>
|
|
</pre>
|
|
<h5>
|
|
<a name="boost_asio.reference.read_until.h0"></a>
|
|
<span class="phrase"><a name="boost_asio.reference.read_until.requirements"></a></span><a class="link" href="read_until.html#boost_asio.reference.read_until.requirements">Requirements</a>
|
|
</h5>
|
|
<p>
|
|
<span class="emphasis"><em>Header: </em></span><code class="literal">boost/asio/read_until.hpp</code>
|
|
</p>
|
|
<p>
|
|
<span class="emphasis"><em>Convenience header: </em></span><code class="literal">boost/asio.hpp</code>
|
|
</p>
|
|
</div>
|
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
|
<td align="left"></td>
|
|
<td align="right"><div class="copyright-footer">Copyright © 2003-2021 Christopher
|
|
M. Kohlhoff<p>
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
|
|
</p>
|
|
</div></td>
|
|
</tr></table>
|
|
<hr>
|
|
<div class="spirit-nav">
|
|
<a accesskey="p" href="read_at/overload8.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.html"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../boost_asio.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="read_until/overload1.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
|
|
</div>
|
|
</body>
|
|
</html>
|