forked from boostorg/beast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsocket_6_timeouts.cpp
More file actions
103 lines (77 loc) · 1.99 KB
/
Copy pathwebsocket_6_timeouts.cpp
File metadata and controls
103 lines (77 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
//
// Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Official repository: https://github.com/boostorg/beast
//
#include <boost/beast/_experimental/unit_test/suite.hpp>
#ifdef BOOST_MSVC
#pragma warning(push)
#pragma warning(disable: 4459) // declaration hides global declaration
#endif
#include <boost/beast.hpp>
#include <boost/beast/ssl.hpp>
#include <boost/asio.hpp>
#include <boost/asio/ssl.hpp>
#include <iostream>
namespace {
#include "websocket_common.ipp"
void
snippets()
{
{
stream<tcp_stream> ws(ioc);
{
//[code_websocket_6_1
// Apply suggested timeout options for the server role to the stream
ws.set_option(stream_base::timeout::suggested(role_type::server));
//]
}
{
//[code_websocket_6_2
stream_base::timeout opt{
std::chrono::seconds(30), // handshake timeout
stream_base::none(), // idle timeout
false
};
// Set the timeout options on the stream.
ws.set_option(opt);
//]
}
{
flat_buffer b;
//[code_websocket_6_3
ws.async_read(b,
[](error_code ec, std::size_t)
{
if(ec == beast::error::timeout)
std::cerr << "timeout, connection closed!";
});
//]
}
}
{
//[code_websocket_6_4
// Disable any timeouts on the tcp_stream
sock.expires_never();
// Construct the websocket stream, taking ownership of the existing tcp_stream
stream<tcp_stream> ws(std::move(sock));
//]
}
}
struct websocket_6_test
: public boost::beast::unit_test::suite
{
void
run() override
{
BEAST_EXPECT(&snippets);
}
};
BEAST_DEFINE_TESTSUITE(beast,doc,websocket_6);
} // (anon)
#ifdef BOOST_MSVC
#pragma warning(pop)
#endif