]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/doc/requirements/InternetProtocol.qbk
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / asio / doc / requirements / InternetProtocol.qbk
CommitLineData
7c673cae
FG
1[/
2 / Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com)
3 /
4 / Distributed under the Boost Software License, Version 1.0. (See accompanying
5 / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 /]
7
8[section:InternetProtocol Internet protocol requirements]
9
10An internet protocol must meet the requirements for a [link
11boost_asio.reference.Protocol protocol] as well as the additional
12requirements listed below.
13
14In the table below, `X` denotes an internet protocol class, `a` denotes a value
15of type `X`, and `b` denotes a value of type `X`.
16
17[table InternetProtocol requirements
18 [[expression] [return type] [assertion/note\npre/post-conditions]]
19 [
20 [`X::resolver`]
21 [`ip::basic_resolver<X>`]
22 [The type of a resolver for the protocol.]
23 ]
24 [
25 [`X::v4()`]
26 [`X`]
27 [Returns an object representing the IP version 4 protocol.]
28 ]
29 [
30 [`X::v6()`]
31 [`X`]
32 [Returns an object representing the IP version 6 protocol.]
33 ]
34 [
35 [`a == b`]
36 [convertible to `bool`]
37 [Returns whether two protocol objects are equal.]
38 ]
39 [
40 [`a != b`]
41 [convertible to `bool`]
42 [Returns `!(a == b)`.]
43 ]
44]
45
46[endsect]