Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / beast / doc / html / beast / ref / boost__beast__http__status_class.html
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
4 <title>http::status_class</title>
5 <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
6 <meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
7 <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Boost.Beast">
8 <link rel="up" href="../ref.html" title="This Page Intentionally Left Blank 2/2">
9 <link rel="prev" href="boost__beast__http__status.html" title="http::status">
10 <link rel="next" href="boost__beast__http__string_body.html" title="http::string_body">
11 </head>
12 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13 <table cellpadding="2" width="100%"><tr>
14 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td>
15 <td align="center"><a href="../../../../../../index.html">Home</a></td>
16 <td align="center"><a href="../../../../../../libs/libraries.htm">Libraries</a></td>
17 <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
18 <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
19 <td align="center"><a href="../../../../../../more/index.htm">More</a></td>
20 </tr></table>
21 <hr>
22 <div class="spirit-nav">
23 <a accesskey="p" href="boost__beast__http__status.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ref.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="boost__beast__http__string_body.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
24 </div>
25 <div class="section">
26 <div class="titlepage"><div><div><h4 class="title">
27 <a name="beast.ref.boost__beast__http__status_class"></a><a class="link" href="boost__beast__http__status_class.html" title="http::status_class">http::status_class</a>
28 </h4></div></div></div>
29 <p>
30         <a class="indexterm" name="idm45873489991232"></a>
31 Represents the class of a status-code.
32       </p>
33 <h5>
34 <a name="beast.ref.boost__beast__http__status_class.h0"></a>
35         <span class="phrase"><a name="beast.ref.boost__beast__http__status_class.synopsis"></a></span><a class="link" href="boost__beast__http__status_class.html#beast.ref.boost__beast__http__status_class.synopsis">Synopsis</a>
36       </h5>
37 <p>
38         Defined in header <code class="literal">&lt;<a href="../../../../../../boost/beast/http/status.hpp" target="_top">boost/beast/http/status.hpp</a>&gt;</code>
39       </p>
40 <pre class="programlisting"><span class="keyword">enum</span> <span class="identifier">status_class</span>
41 </pre>
42 <p>
43         <a class="indexterm" name="idm45873489983216"></a>
44  <a class="indexterm" name="idm45873489982112"></a>
45  <a class="indexterm" name="idm45873489981008"></a>
46  <a class="indexterm" name="idm45873489979904"></a>
47  <a class="indexterm" name="idm45873489978800"></a>
48  <a class="indexterm" name="idm45873489977696"></a>
49
50       </p>
51 <h5>
52 <a name="beast.ref.boost__beast__http__status_class.h1"></a>
53         <span class="phrase"><a name="beast.ref.boost__beast__http__status_class.values"></a></span><a class="link" href="boost__beast__http__status_class.html#beast.ref.boost__beast__http__status_class.values">Values</a>
54       </h5>
55 <div class="informaltable"><table class="table">
56 <colgroup>
57 <col>
58 <col>
59 </colgroup>
60 <thead><tr>
61 <th>
62                 <p>
63                   Name
64                 </p>
65               </th>
66 <th>
67                 <p>
68                   Description
69                 </p>
70               </th>
71 </tr></thead>
72 <tbody>
73 <tr>
74 <td>
75                 <p>
76                   <code class="literal">unknown</code>
77                 </p>
78               </td>
79 <td>
80                 <p>
81                   Unknown status-class.
82                 </p>
83               </td>
84 </tr>
85 <tr>
86 <td>
87                 <p>
88                   <code class="literal">informational</code>
89                 </p>
90               </td>
91 <td>
92                 <p>
93                   The request was received, continuing processing.
94                 </p>
95               </td>
96 </tr>
97 <tr>
98 <td>
99                 <p>
100                   <code class="literal">successful</code>
101                 </p>
102               </td>
103 <td>
104                 <p>
105                   The request was successfully received, understood, and accepted.
106                 </p>
107               </td>
108 </tr>
109 <tr>
110 <td>
111                 <p>
112                   <code class="literal">redirection</code>
113                 </p>
114               </td>
115 <td>
116                 <p>
117                   Further action needs to be taken in order to complete the request.
118                 </p>
119               </td>
120 </tr>
121 <tr>
122 <td>
123                 <p>
124                   <code class="literal">client_error</code>
125                 </p>
126               </td>
127 <td>
128                 <p>
129                   The request contains bad syntax or cannot be fulfilled.
130                 </p>
131               </td>
132 </tr>
133 <tr>
134 <td>
135                 <p>
136                   <code class="literal">server_error</code>
137                 </p>
138               </td>
139 <td>
140                 <p>
141                   The server failed to fulfill an apparently valid request.
142                 </p>
143               </td>
144 </tr>
145 </tbody>
146 </table></div>
147 <h5>
148 <a name="beast.ref.boost__beast__http__status_class.h2"></a>
149         <span class="phrase"><a name="beast.ref.boost__beast__http__status_class.description"></a></span><a class="link" href="boost__beast__http__status_class.html#beast.ref.boost__beast__http__status_class.description">Description</a>
150       </h5>
151 <p>
152         Convenience header <code class="literal">&lt;<a href="../../../../../../boost/beast/http.hpp" target="_top">boost/beast/http.hpp</a>&gt;</code>
153       </p>
154 </div>
155 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
156 <td align="left"></td>
157 <td align="right"><div class="copyright-footer">Copyright &#169; 2016-2019 Vinnie
158       Falco<p>
159         Distributed under the Boost Software License, Version 1.0. (See accompanying
160         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>)
161       </p>
162 </div></td>
163 </tr></table>
164 <hr>
165 <div class="spirit-nav">
166 <a accesskey="p" href="boost__beast__http__status.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ref.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="boost__beast__http__string_body.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
167 </div>
168 </body>
169 </html>