@@ -99,7 +99,7 @@ More information about the internals of the `Asynchronous Servers`_ can be found
99
99
in the following section.
100
100
101
101
Synchronous Servers
102
- ~~~~~~~~~~~~~~~~~~~
102
+ -------------------
103
103
104
104
The synchronous server implementation is represented by the template ``server ``
105
105
in namespace ``boost::network::http ``. The ``server `` template takes in a single
@@ -140,7 +140,7 @@ application, which means you can expose almost all your application logic
140
140
through the Handler type, which you can also initialize appropriately.
141
141
142
142
API Documentation
143
- `````````````````
143
+ ~~~~~~~~~~~~~~~~~
144
144
145
145
The following sections assume that the following file has been included:
146
146
@@ -156,15 +156,15 @@ And that the following typedef's have been put in place:
156
156
typedef boost::network::http: :server<handler_type> http_server;
157
157
158
158
Constructor
159
- ***********
159
+ ```````````
160
160
161
161
``http_server(address, port, handler) ``
162
162
Construct an HTTP Server instance, passing in the address and port as
163
163
``std::string const & `` and handler being of type ``handler_type `` but
164
164
passed in as an lvalue reference.
165
165
166
166
Public Members
167
- **************
167
+ ``````````````
168
168
169
169
The following definitions assume that a properly constructed ``http_server ``
170
170
instance has been constructed in the following manner:
@@ -188,12 +188,12 @@ instance has been constructed in the following manner:
188
188
Stop the HTTP Server acceptor and wait for all pending requests to finish.
189
189
190
190
Asynchronous Servers
191
- ~~~~~~~~~~~~~~~~~~~~
191
+ --------------------
192
192
193
193
.. FIXME show the table of tags that enable the asynchronous implementation.
194
194
195
195
API Documentation
196
- `````````````````
196
+ ~~~~~~~~~~~~~~~~~
197
197
198
198
.. FIXME show the table of publicly-accessible member functions.
199
199
0 commit comments