Skip to content

Commit b5c048c

Browse files
committed
Regenerate documentation.
1 parent 0fc8ff6 commit b5c048c

File tree

1 file changed

+56
-17
lines changed

1 file changed

+56
-17
lines changed

asio/src/doc/reference.qbk

Lines changed: 56 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -48683,7 +48683,7 @@ Start an asynchronous fill.
4868348683

4868448684
template<
4868548685
typename ``[link asio.reference.ReadHandler ReadHandler]``>
48686-
void async_fill(
48686+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_fill(
4868748687
ReadHandler handler);
4868848688

4868948689

@@ -48701,7 +48701,7 @@ Start an asynchronous read. The buffer into which the data will be read must be
4870148701
template<
4870248702
typename ``[link asio.reference.MutableBufferSequence MutableBufferSequence]``,
4870348703
typename ``[link asio.reference.ReadHandler ReadHandler]``>
48704-
void async_read_some(
48704+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_read_some(
4870548705
const MutableBufferSequence & buffers,
4870648706
ReadHandler handler);
4870748707

@@ -48720,7 +48720,7 @@ Start an asynchronous write. The data being written must be valid for the lifeti
4872048720
template<
4872148721
typename ``[link asio.reference.ConstBufferSequence ConstBufferSequence]``,
4872248722
typename ``[link asio.reference.WriteHandler WriteHandler]``>
48723-
void async_write_some(
48723+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_write_some(
4872448724
const ConstBufferSequence & buffers,
4872548725
WriteHandler handler);
4872648726

@@ -49386,7 +49386,7 @@ Start an asynchronous fill.
4938649386

4938749387
template<
4938849388
typename ``[link asio.reference.ReadHandler ReadHandler]``>
49389-
void async_fill(
49389+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_fill(
4939049390
ReadHandler handler);
4939149391

4939249392

@@ -49403,7 +49403,7 @@ Start an asynchronous flush.
4940349403

4940449404
template<
4940549405
typename ``[link asio.reference.WriteHandler WriteHandler]``>
49406-
void async_flush(
49406+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_flush(
4940749407
WriteHandler handler);
4940849408

4940949409

@@ -49421,7 +49421,7 @@ Start an asynchronous read. The buffer into which the data will be read must be
4942149421
template<
4942249422
typename ``[link asio.reference.MutableBufferSequence MutableBufferSequence]``,
4942349423
typename ``[link asio.reference.ReadHandler ReadHandler]``>
49424-
void async_read_some(
49424+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_read_some(
4942549425
const MutableBufferSequence & buffers,
4942649426
ReadHandler handler);
4942749427

@@ -49440,7 +49440,7 @@ Start an asynchronous write. The data being written must be valid for the lifeti
4944049440
template<
4944149441
typename ``[link asio.reference.ConstBufferSequence ConstBufferSequence]``,
4944249442
typename ``[link asio.reference.WriteHandler WriteHandler]``>
49443-
void async_write_some(
49443+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_write_some(
4944449444
const ConstBufferSequence & buffers,
4944549445
WriteHandler handler);
4944649446

@@ -50141,7 +50141,7 @@ Start an asynchronous flush.
5014150141

5014250142
template<
5014350143
typename ``[link asio.reference.WriteHandler WriteHandler]``>
50144-
void async_flush(
50144+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_flush(
5014550145
WriteHandler handler);
5014650146

5014750147

@@ -50159,7 +50159,7 @@ Start an asynchronous read. The buffer into which the data will be read must be
5015950159
template<
5016050160
typename ``[link asio.reference.MutableBufferSequence MutableBufferSequence]``,
5016150161
typename ``[link asio.reference.ReadHandler ReadHandler]``>
50162-
void async_read_some(
50162+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_read_some(
5016350163
const MutableBufferSequence & buffers,
5016450164
ReadHandler handler);
5016550165

@@ -50178,7 +50178,7 @@ Start an asynchronous write. The data being written must be valid for the lifeti
5017850178
template<
5017950179
typename ``[link asio.reference.ConstBufferSequence ConstBufferSequence]``,
5018050180
typename ``[link asio.reference.WriteHandler WriteHandler]``>
50181-
void async_write_some(
50181+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_write_some(
5018250182
const ConstBufferSequence & buffers,
5018350183
WriteHandler handler);
5018450184

@@ -65911,7 +65911,9 @@ The iterator type.
6591165911
[[link asio.reference.ip__basic_resolver_iterator.create [*create]]]
6591265912
[Create an iterator from an addrinfo list returned by getaddrinfo.
6591365913

65914-
Create an iterator from an endpoint, host name and service name. ]
65914+
Create an iterator from an endpoint, host name and service name.
65915+
65916+
Create an iterator from a sequence of endpoints, host and service name. ]
6591565917
]
6591665918

6591765919
[
@@ -66686,7 +66688,9 @@ An iterator over the entries produced by a resolver.
6668666688
[[link asio.reference.ip__basic_resolver_iterator.create [*create]]]
6668766689
[Create an iterator from an addrinfo list returned by getaddrinfo.
6668866690

66689-
Create an iterator from an endpoint, host name and service name. ]
66691+
Create an iterator from an endpoint, host name and service name.
66692+
66693+
Create an iterator from a sequence of endpoints, host and service name. ]
6669066694
]
6669166695

6669266696
[
@@ -66785,7 +66789,20 @@ Create an iterator from an endpoint, host name and service name.
6678566789
`` [''''&raquo;''' [link asio.reference.ip__basic_resolver_iterator.create.overload2 more...]]``
6678666790

6678766791

66788-
[section:overload1 ip::basic_resolver_iterator::create (1 of 2 overloads)]
66792+
Create an iterator from a sequence of endpoints, host and service name.
66793+
66794+
66795+
template<
66796+
typename ``[link asio.reference.EndpointIterator EndpointIterator]``>
66797+
static basic_resolver_iterator ``[link asio.reference.ip__basic_resolver_iterator.create.overload3 create]``(
66798+
EndpointIterator begin,
66799+
EndpointIterator end,
66800+
const std::string & host_name,
66801+
const std::string & service_name);
66802+
`` [''''&raquo;''' [link asio.reference.ip__basic_resolver_iterator.create.overload3 more...]]``
66803+
66804+
66805+
[section:overload1 ip::basic_resolver_iterator::create (1 of 3 overloads)]
6678966806

6679066807

6679166808
Create an iterator from an addrinfo list returned by getaddrinfo.
@@ -66802,7 +66819,7 @@ Create an iterator from an addrinfo list returned by getaddrinfo.
6680266819

6680366820

6680466821

66805-
[section:overload2 ip::basic_resolver_iterator::create (2 of 2 overloads)]
66822+
[section:overload2 ip::basic_resolver_iterator::create (2 of 3 overloads)]
6680666823

6680766824

6680866825
Create an iterator from an endpoint, host name and service name.
@@ -66815,6 +66832,26 @@ Create an iterator from an endpoint, host name and service name.
6681566832

6681666833

6681766834

66835+
[endsect]
66836+
66837+
66838+
66839+
[section:overload3 ip::basic_resolver_iterator::create (3 of 3 overloads)]
66840+
66841+
66842+
Create an iterator from a sequence of endpoints, host and service name.
66843+
66844+
66845+
template<
66846+
typename ``[link asio.reference.EndpointIterator EndpointIterator]``>
66847+
static basic_resolver_iterator create(
66848+
EndpointIterator begin,
66849+
EndpointIterator end,
66850+
const std::string & host_name,
66851+
const std::string & service_name);
66852+
66853+
66854+
6681866855
[endsect]
6681966856

6682066857

@@ -69530,7 +69567,9 @@ The iterator type.
6953069567
[[link asio.reference.ip__basic_resolver_iterator.create [*create]]]
6953169568
[Create an iterator from an addrinfo list returned by getaddrinfo.
6953269569

69533-
Create an iterator from an endpoint, host name and service name. ]
69570+
Create an iterator from an endpoint, host name and service name.
69571+
69572+
Create an iterator from a sequence of endpoints, host and service name. ]
6953469573
]
6953569574

6953669575
[
@@ -84069,7 +84108,7 @@ Start an asynchronous receive.
8406984108
template<
8407084109
typename ``[link asio.reference.MutableBufferSequence MutableBufferSequence]``,
8407184110
typename ``[link asio.reference.ReadHandler ReadHandler]``>
84072-
void async_receive(
84111+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_receive(
8407384112
implementation_type & impl,
8407484113
const MutableBufferSequence & buffers,
8407584114
socket_base::message_flags in_flags,
@@ -84091,7 +84130,7 @@ Start an asynchronous send.
8409184130
template<
8409284131
typename ``[link asio.reference.ConstBufferSequence ConstBufferSequence]``,
8409384132
typename ``[link asio.reference.WriteHandler WriteHandler]``>
84094-
void async_send(
84133+
``[link asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]`` async_send(
8409584134
implementation_type & impl,
8409684135
const ConstBufferSequence & buffers,
8409784136
socket_base::message_flags flags,

0 commit comments

Comments
 (0)