@@ -231,7 +231,7 @@ class endpoint : public config::socket_type {
231
231
* established but before any additional wrappers (proxy connects, TLS
232
232
* handshakes, etc) have been performed.
233
233
*
234
- * @since 0.4.0-alpha1
234
+ * @since 0.3.0
235
235
*
236
236
* @param h The handler to call on tcp pre init.
237
237
*/
@@ -260,7 +260,7 @@ class endpoint : public config::socket_type {
260
260
* etc have been performed. This is fired before any bytes are read or any
261
261
* WebSocket specific handshake logic has been performed.
262
262
*
263
- * @since 0.4.0-alpha1
263
+ * @since 0.3.0
264
264
*
265
265
* @param h The handler to call on tcp post init.
266
266
*/
@@ -283,7 +283,7 @@ class endpoint : public config::socket_type {
283
283
* A value of zero will use the operating system default. This is the
284
284
* default value.
285
285
*
286
- * @since 0.4.0-alpha1
286
+ * @since 0.3.0
287
287
*
288
288
* @param backlog The maximum length of the queue of pending connections
289
289
*/
@@ -301,7 +301,7 @@ class endpoint : public config::socket_type {
301
301
*
302
302
* The default is false.
303
303
*
304
- * @since 0.4.0-alpha1
304
+ * @since 0.3.0
305
305
*
306
306
* @param value Whether or not to use the SO_REUSEADDR option
307
307
*/
@@ -604,7 +604,7 @@ class endpoint : public config::socket_type {
604
604
* called either before the endpoint has run out of work or before it was
605
605
* started
606
606
*
607
- * @since 0.4.0-alpha1
607
+ * @since 0.3.0
608
608
*/
609
609
void start_perpetual () {
610
610
m_work.reset (new boost::asio::io_service::work (*m_io_service));
@@ -616,7 +616,7 @@ class endpoint : public config::socket_type {
616
616
* method to exit normally when it runs out of connections. If there are
617
617
* currently active connections it will not end until they are complete.
618
618
*
619
- * @since 0.4.0-alpha1
619
+ * @since 0.3.0
620
620
*/
621
621
void stop_perpetual () {
622
622
m_work.reset ();
0 commit comments