WebSocket++ 0.8.3-dev
C++ websocket client/server library
Loading...
Searching...
No Matches
endpoint.hpp
1/*
2 * Copyright (c) 2015, Peter Thorson. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above copyright
9 * notice, this list of conditions and the following disclaimer in the
10 * documentation and/or other materials provided with the distribution.
11 * * Neither the name of the WebSocket++ Project nor the
12 * names of its contributors may be used to endorse or promote products
13 * derived from this software without specific prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
19 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 */
27
28#ifndef WEBSOCKETPP_TRANSPORT_ASIO_HPP
29#define WEBSOCKETPP_TRANSPORT_ASIO_HPP
30
31#include <websocketpp/transport/base/endpoint.hpp>
32#include <websocketpp/transport/asio/connection.hpp>
33#include <websocketpp/transport/asio/security/none.hpp>
34
35#include <websocketpp/uri.hpp>
36#include <websocketpp/logger/levels.hpp>
37
38#include <websocketpp/common/asio.hpp>
39#include <websocketpp/common/functional.hpp>
40
41#include <sstream>
42#include <string>
43
44namespace websocketpp {
45namespace transport {
46namespace asio {
47
48/// Asio based endpoint transport component
49/**
50 * transport::asio::endpoint implements an endpoint transport component using
51 * Asio.
52 */
53template <typename config>
54class endpoint : public config::socket_type {
55public:
56 /// Type of this endpoint transport component
57 typedef endpoint<config> type;
58
59 /// Type of the concurrency policy
60 typedef typename config::concurrency_type concurrency_type;
61 /// Type of the socket policy
62 typedef typename config::socket_type socket_type;
63 /// Type of the error logging policy
64 typedef typename config::elog_type elog_type;
65 /// Type of the access logging policy
66 typedef typename config::alog_type alog_type;
67
68 /// Type of the socket connection component
70 /// Type of a shared pointer to the socket connection component
72
73 /// Type of the connection transport component associated with this
74 /// endpoint transport component
76 /// Type of a shared pointer to the connection transport component
77 /// associated with this endpoint transport component
79
80 /// Type of a pointer to the ASIO io_context being used
81 typedef lib::asio::io_context * io_context_ptr;
82 /// Type of a shared pointer to the acceptor being used
83 typedef lib::shared_ptr<lib::asio::ip::tcp::acceptor> acceptor_ptr;
84 /// Type of a shared pointer to the resolver being used
85 typedef lib::shared_ptr<lib::asio::ip::tcp::resolver> resolver_ptr;
86 /// Type of timer handle
87 typedef lib::shared_ptr<lib::asio::steady_timer> timer_ptr;
88 /// Type of a shared pointer to an io_context work object
90
91 /// Type of socket pre-bind handler
92 typedef lib::function<lib::error_code(acceptor_ptr)> tcp_pre_bind_handler;
93
94 // generate and manage our own io_context
95 explicit endpoint()
96 : m_io_context(NULL)
97 , m_external_io_context(false)
98 , m_listen_backlog(lib::asio::socket_base::max_listen_connections)
99 , m_reuse_addr(false)
100 , m_state(UNINITIALIZED)
101 {
102 //std::cout << "transport::asio::endpoint constructor" << std::endl;
103 }
104
105 ~endpoint() {
106 // clean up our io_context if we were initialized with an internal one.
107
108 // Explicitly destroy local objects
109 m_acceptor.reset();
110 m_resolver.reset();
111 m_work_guard.reset();
112 if (m_state != UNINITIALIZED && !m_external_io_context) {
113 delete m_io_context;
114 }
115 }
116
117 /// transport::asio objects are moveable but not copyable or assignable.
118 /// The following code sets this situation up based on whether or not we
119 /// have C++11 support or not
120#ifdef _WEBSOCKETPP_DEFAULT_DELETE_FUNCTIONS_
121 endpoint(const endpoint & src) = delete;
122 endpoint& operator= (const endpoint & rhs) = delete;
123#else
124private:
125 endpoint(const endpoint & src);
126 endpoint & operator= (const endpoint & rhs);
127public:
128#endif // _WEBSOCKETPP_DEFAULT_DELETE_FUNCTIONS_
129
130#ifdef _WEBSOCKETPP_MOVE_SEMANTICS_
131 endpoint (endpoint && src)
132 : config::socket_type(std::move(src))
133 , m_tcp_pre_init_handler(src.m_tcp_pre_init_handler)
134 , m_tcp_post_init_handler(src.m_tcp_post_init_handler)
135 , m_io_context(src.m_io_context)
136 , m_external_io_context(src.m_external_io_context)
137 , m_acceptor(src.m_acceptor)
138 , m_listen_backlog(lib::asio::socket_base::max_listen_connections)
139 , m_reuse_addr(src.m_reuse_addr)
140 , m_elog(src.m_elog)
141 , m_alog(src.m_alog)
142 , m_state(src.m_state)
143 {
144 src.m_io_context = NULL;
145 src.m_external_io_context = false;
146 src.m_acceptor = NULL;
147 src.m_state = UNINITIALIZED;
148 }
149
150 /*endpoint & operator= (const endpoint && rhs) {
151 if (this != &rhs) {
152 m_io_context = rhs.m_io_context;
153 m_external_io_context = rhs.m_external_io_context;
154 m_acceptor = rhs.m_acceptor;
155 m_listen_backlog = rhs.m_listen_backlog;
156 m_reuse_addr = rhs.m_reuse_addr;
157 m_state = rhs.m_state;
158
159 rhs.m_io_context = NULL;
160 rhs.m_external_io_context = false;
161 rhs.m_acceptor = NULL;
162 rhs.m_listen_backlog = lib::asio::socket_base::max_listen_connections;
163 rhs.m_state = UNINITIALIZED;
164
165 // TODO: this needs to be updated
166 }
167 return *this;
168 }*/
169#endif // _WEBSOCKETPP_MOVE_SEMANTICS_
170
171 /// Return whether or not the endpoint produces secure connections.
172 bool is_secure() const {
173 return socket_type::is_secure();
174 }
175
176 /// initialize asio transport with external io_context (exception free)
177 /**
178 * Initialize the ASIO transport policy for this endpoint using the provided
179 * io_context object. asio_init must be called exactly once on any endpoint
180 * that uses transport::asio before it can be used.
181 *
182 * @param ptr A pointer to the io_context to use for asio events
183 * @param ec Set to indicate what error occurred, if any.
184 */
185 void init_asio(io_context_ptr ptr, lib::error_code & ec) {
186 if (m_state != UNINITIALIZED) {
187 m_elog->write(log::elevel::library,
188 "asio::init_asio called from the wrong state");
189 using websocketpp::error::make_error_code;
190 ec = make_error_code(websocketpp::error::invalid_state);
191 return;
192 }
193
194 m_alog->write(log::alevel::devel,"asio::init_asio");
195
196 m_io_context = ptr;
197 m_external_io_context = true;
198 m_acceptor.reset(new lib::asio::ip::tcp::acceptor(*m_io_context));
199
200 m_state = READY;
201 ec = lib::error_code();
202 }
203
204#ifndef _WEBSOCKETPP_NO_EXCEPTIONS_
205 /// initialize asio transport with external io_context
206 /**
207 * Initialize the ASIO transport policy for this endpoint using the provided
208 * io_context object. asio_init must be called exactly once on any endpoint
209 * that uses transport::asio before it can be used.
210 *
211 * @param ptr A pointer to the io_context to use for asio events
212 */
214 lib::error_code ec;
215 init_asio(ptr,ec);
216 if (ec) { throw exception(ec); }
217 }
218#endif // _WEBSOCKETPP_NO_EXCEPTIONS_
219
220 /// Initialize asio transport with internal io_context (exception free)
221 /**
222 * This method of initialization will allocate and use an internally managed
223 * io_context.
224 *
225 * @see init_asio(io_context_ptr ptr)
226 *
227 * @param ec Set to indicate what error occurred, if any.
228 */
229 void init_asio(lib::error_code & ec) {
230 // Use a smart pointer until the call is successful and ownership has
231 // successfully been taken. Use unique_ptr when available.
232 // TODO: remove the use of auto_ptr when C++98/03 support is no longer
233 // necessary.
235 lib::unique_ptr<lib::asio::io_context> context(new lib::asio::io_context());
236#else
237 lib::auto_ptr<lib::asio::io_context> context(new lib::asio::io_context());
238#endif
239 init_asio(context.get(), ec);
240 if( !ec ) context.release(); // Call was successful, transfer ownership
241 m_external_io_context = false;
242 }
243
244#ifndef _WEBSOCKETPP_NO_EXCEPTIONS_
245 /// Initialize asio transport with internal io_context
246 /**
247 * This method of initialization will allocate and use an internally managed
248 * io_context.
249 *
250 * @see init_asio(io_context_ptr ptr)
251 */
252 void init_asio() {
253 // Use a smart pointer until the call is successful and ownership has
254 // successfully been taken. Use unique_ptr when available.
255 // TODO: remove the use of auto_ptr when C++98/03 support is no longer
256 // necessary.
258 lib::unique_ptr<lib::asio::io_context> context(new lib::asio::io_context());
259#else
260 lib::auto_ptr<lib::asio::io_context> context(new lib::asio::io_context());
261#endif
262 init_asio( context.get() );
263 // If control got this far without an exception, then ownership has successfully been taken
264 context.release();
265 m_external_io_context = false;
266 }
267#endif // _WEBSOCKETPP_NO_EXCEPTIONS_
268
269 /// Sets the tcp pre bind handler
270 /**
271 * The tcp pre bind handler is called after the listen acceptor has
272 * been created but before the socket bind is performed.
273 *
274 * @since 0.8.0
275 *
276 * @param h The handler to call on tcp pre bind init.
277 */
279 m_tcp_pre_bind_handler = h;
280 }
281
282 /// Sets the tcp pre init handler
283 /**
284 * The tcp pre init handler is called after the raw tcp connection has been
285 * established but before any additional wrappers (proxy connects, TLS
286 * handshakes, etc) have been performed.
287 *
288 * @since 0.3.0
289 *
290 * @param h The handler to call on tcp pre init.
291 */
292 void set_tcp_pre_init_handler(tcp_init_handler h) {
293 m_tcp_pre_init_handler = h;
294 }
295
296 /// Sets the tcp pre init handler (deprecated)
297 /**
298 * The tcp pre init handler is called after the raw tcp connection has been
299 * established but before any additional wrappers (proxy connects, TLS
300 * handshakes, etc) have been performed.
301 *
302 * @deprecated Use set_tcp_pre_init_handler instead
303 *
304 * @param h The handler to call on tcp pre init.
305 */
306 void set_tcp_init_handler(tcp_init_handler h) {
308 }
309
310 /// Sets the tcp post init handler
311 /**
312 * The tcp post init handler is called after the tcp connection has been
313 * established and all additional wrappers (proxy connects, TLS handshakes,
314 * etc have been performed. This is fired before any bytes are read or any
315 * WebSocket specific handshake logic has been performed.
316 *
317 * @since 0.3.0
318 *
319 * @param h The handler to call on tcp post init.
320 */
321 void set_tcp_post_init_handler(tcp_init_handler h) {
322 m_tcp_post_init_handler = h;
323 }
324
325 /// Sets the maximum length of the queue of pending connections.
326 /**
327 * Sets the maximum length of the queue of pending connections. Increasing
328 * this will allow WebSocket++ to queue additional incoming connections.
329 * Setting it higher may prevent failed connections at high connection rates
330 * but may cause additional latency.
331 *
332 * For this value to take effect you may need to adjust operating system
333 * settings.
334 *
335 * New values affect future calls to listen only.
336 *
337 * The default value is specified as *::asio::socket_base::max_listen_connections
338 * which uses the operating system defined maximum queue length. Your OS
339 * may restrict or silently lower this value. A value of zero may cause
340 * all connections to be rejected.
341 *
342 * @since 0.3.0
343 *
344 * @param backlog The maximum length of the queue of pending connections
345 */
346 void set_listen_backlog(int backlog) {
347 m_listen_backlog = backlog;
348 }
349
350 /// Sets whether to use the SO_REUSEADDR flag when opening listening sockets
351 /**
352 * Specifies whether or not to use the SO_REUSEADDR TCP socket option. What
353 * this flag does depends on your operating system.
354 *
355 * Please consult operating system documentation for more details. There
356 * may be security consequences to enabling this option.
357 *
358 * New values affect future calls to listen only so set this value prior to
359 * calling listen.
360 *
361 * The default is false.
362 *
363 * @since 0.3.0
364 *
365 * @param value Whether or not to use the SO_REUSEADDR option
366 */
367 void set_reuse_addr(bool value) {
368 m_reuse_addr = value;
369 }
370
371 /// Retrieve a reference to the endpoint's io_context
372 /**
373 * The io_context may be an internal or external one. This may be used to
374 * call methods of the io_context that are not explicitly wrapped by the
375 * endpoint.
376 *
377 * This method is only valid after the endpoint has been initialized with
378 * `init_asio`. No error will be returned if it isn't.
379 *
380 * @return A reference to the endpoint's io_context
381 */
382 lib::asio::io_context & get_io_context() {
383 return *m_io_context;
384 }
385
386 /// Get local TCP endpoint
387 /**
388 * Extracts the local endpoint from the acceptor. This represents the
389 * address that WebSocket++ is listening on.
390 *
391 * Sets a bad_descriptor error if the acceptor is not currently listening
392 * or otherwise unavailable.
393 *
394 * @since 0.7.0
395 *
396 * @param ec Set to indicate what error occurred, if any.
397 * @return The local endpoint
398 */
399 lib::asio::ip::tcp::endpoint get_local_endpoint(lib::asio::error_code & ec) {
400 if (m_acceptor) {
401 return m_acceptor->local_endpoint(ec);
402 } else {
403 ec = lib::asio::error::make_error_code(lib::asio::error::bad_descriptor);
404 return lib::asio::ip::tcp::endpoint();
405 }
406 }
407
408 /// Set up endpoint for listening manually (exception free)
409 /**
410 * Bind the internal acceptor using the specified settings. The endpoint
411 * must have been initialized by calling init_asio before listening.
412 *
413 * @param ep An endpoint to read settings from
414 * @param ec Set to indicate what error occurred, if any.
415 */
416 void listen(lib::asio::ip::tcp::endpoint const & ep, lib::error_code & ec)
417 {
418 if (m_state != READY) {
419 m_elog->write(log::elevel::library,
420 "asio::listen called from the wrong state");
421 using websocketpp::error::make_error_code;
422 ec = make_error_code(websocketpp::error::invalid_state);
423 return;
424 }
425
426 m_alog->write(log::alevel::devel,"asio::listen");
427
428 lib::asio::error_code bec;
429
430 m_acceptor->open(ep.protocol(),bec);
431 if (bec) {ec = clean_up_listen_after_error(bec);return;}
432
433 m_acceptor->set_option(lib::asio::socket_base::reuse_address(m_reuse_addr),bec);
434 if (bec) {ec = clean_up_listen_after_error(bec);return;}
435
436 // if a TCP pre-bind handler is present, run it
437 if (m_tcp_pre_bind_handler) {
438 ec = m_tcp_pre_bind_handler(m_acceptor);
439 if (ec) {
440 ec = clean_up_listen_after_error(ec);
441 return;
442 }
443 }
444
445 m_acceptor->bind(ep,bec);
446 if (bec) {ec = clean_up_listen_after_error(bec);return;}
447
448 m_acceptor->listen(m_listen_backlog,bec);
449 if (bec) {ec = clean_up_listen_after_error(bec);return;}
450
451 // Success
452 m_state = LISTENING;
453 ec = lib::error_code();
454 }
455
456 /// Set up endpoint for listening with protocol and port (exception free)
457 /**
458 * Bind the internal acceptor using the given internet protocol and port.
459 * The endpoint must have been initialized by calling init_asio before
460 * listening.
461 *
462 * Common options include:
463 * - IPv6 with mapped IPv4 for dual stack hosts lib::asio::ip::tcp::v6()
464 * - IPv4 only: lib::asio::ip::tcp::v4()
465 *
466 * @param internet_protocol The internet protocol to use.
467 * @param port The port to listen on.
468 * @param ec Set to indicate what error occurred, if any.
469 */
470 template <typename InternetProtocol>
471 void listen(InternetProtocol const & internet_protocol, uint16_t port,
472 lib::error_code & ec)
473 {
474 lib::asio::ip::tcp::endpoint ep(internet_protocol, port);
475 listen(ep,ec);
476 }
477
478 /// Set up endpoint for listening on a port (exception free)
479 /**
480 * Bind the internal acceptor using the given port. The IPv6 protocol with
481 * mapped IPv4 for dual stack hosts will be used. If you need IPv4 only use
482 * the overload that allows specifying the protocol explicitly.
483 *
484 * The endpoint must have been initialized by calling init_asio before
485 * listening.
486 *
487 * @param port The port to listen on.
488 * @param ec Set to indicate what error occurred, if any.
489 */
490 void listen(uint16_t port, lib::error_code & ec) {
491 listen(lib::asio::ip::tcp::v6(), port, ec);
492 }
493
494 /// Set up endpoint for listening on a host and service (exception free)
495 /**
496 * Bind the internal acceptor using the given host and service. More details
497 * about what host and service can be are available in the Asio
498 * documentation for the ip::basic_resolver::resolve function.
499 *
500 * The endpoint must have been initialized by calling init_asio before
501 * listening.
502 *
503 * Once listening the underlying io_context will be kept open indefinitely.
504 * Calling endpoint::stop_listening will stop the endpoint from accepting
505 * new connections. See the documentation for stop listening for more details
506 * about shutting down Asio Transport based endpoints.
507 *
508 * @see stop_listening(lib::error_code &)
509 *
510 * @param host A string identifying a location. May be a descriptive name or
511 * a numeric address string.
512 * @param service A string identifying the requested service. This may be a
513 * descriptive name or a numeric string corresponding to a port number.
514 * @param ec Set to indicate what error occurred, if any.
515 */
516 void listen(std::string const & host, std::string const & service,
517 lib::error_code & ec)
518 {
519 using lib::asio::ip::tcp;
520 tcp::resolver r(*m_io_context);
521 tcp::resolver::results_type results = r.resolve(host, service);
522 if (results.empty()) {
523 m_elog->write(log::elevel::library,
524 "asio::listen could not resolve the supplied host or service");
526 return;
527 }
528 listen(*(results.begin()),ec);
529 }
530
531 /// Stop listening (exception free)
532 /**
533 * Stop listening and accepting new connections.
534 *
535 * If the endpoint needs to shut down fully (i.e. close all connections)
536 * this member function is necessary but not sufficient. In addition to
537 * stopping listening, individual connections will need to be ended via
538 * their respective connection::close.
539 *
540 * For more details on clean closing, please refer to @ref clean_close
541 * "Cleanly closing Asio Transport based endpoints"
542 *
543 * @since 0.3.0-alpha4
544 * @param ec A status code indicating an error, if any.
545 */
546 void stop_listening(lib::error_code & ec) {
547 if (m_state != LISTENING) {
548 m_elog->write(log::elevel::library,
549 "asio::listen called from the wrong state");
550 using websocketpp::error::make_error_code;
551 ec = make_error_code(websocketpp::error::invalid_state);
552 return;
553 }
554
555 m_acceptor->close();
556 m_state = READY;
557 ec = lib::error_code();
558 }
559
560#ifndef _WEBSOCKETPP_NO_EXCEPTIONS_
561 // if exceptions are avaliable, define listen overloads that use them
562
563 /// Set up endpoint for listening manually
564 /**
565 * Bind the internal acceptor using the settings specified by the endpoint e
566 *
567 * @param ep An endpoint to read settings from
568 */
569 void listen(lib::asio::ip::tcp::endpoint const & ep) {
570 lib::error_code ec;
571 listen(ep,ec);
572 if (ec) { throw exception(ec); }
573 }
574
575 /// Set up endpoint for listening with protocol and port
576 /**
577 * Bind the internal acceptor using the given internet protocol and port.
578 * The endpoint must have been initialized by calling init_asio before
579 * listening.
580 *
581 * Common options include:
582 * - IPv6 with mapped IPv4 for dual stack hosts lib::asio::ip::tcp::v6()
583 * - IPv4 only: lib::asio::ip::tcp::v4()
584 *
585 * @param internet_protocol The internet protocol to use.
586 * @param port The port to listen on.
587 */
588 template <typename InternetProtocol>
589 void listen(InternetProtocol const & internet_protocol, uint16_t port)
590 {
591 lib::asio::ip::tcp::endpoint ep(internet_protocol, port);
592 listen(ep);
593 }
594
595 /// Set up endpoint for listening on a port
596 /**
597 * Bind the internal acceptor using the given port. The IPv6 protocol with
598 * mapped IPv4 for dual stack hosts will be used. If you need IPv4 only use
599 * the overload that allows specifying the protocol explicitly.
600 *
601 * The endpoint must have been initialized by calling init_asio before
602 * listening.
603 *
604 * @param port The port to listen on.
605 * @param ec Set to indicate what error occurred, if any.
606 */
607 void listen(uint16_t port) {
608 listen(lib::asio::ip::tcp::v6(), port);
609 }
610
611 /// Set up endpoint for listening on a host and service
612 /**
613 * Bind the internal acceptor using the given host and service. More
614 * details about what host and service can be are available in the Asio
615 * documentation for the ip::basic_resolver::resolve function.
616 *
617 * The endpoint must have been initialized by calling init_asio before
618 * listening.
619 *
620 * Once listening the underlying io_context will be kept open indefinitely.
621 * Calling endpoint::stop_listening will stop the endpoint from accepting
622 * new connections. See the documentation for stop listening for more
623 * details about shutting down Asio Transport based endpoints.
624 *
625 * @see stop_listening()
626 *
627 * @param host A string identifying a location. May be a descriptive name
628 * or a numeric address string.
629 * @param service A string identifying the requested service. This may be a
630 * descriptive name or a numeric string corresponding to a port number.
631 * @param ec Set to indicate what error occurred, if any.
632 */
633 void listen(std::string const & host, std::string const & service)
634 {
635 lib::error_code ec;
636 listen(host,service,ec);
637 if (ec) { throw exception(ec); }
638 }
639
640 /// Stop listening
641 /**
642 * Stop listening and accepting new connections. This will not end any
643 * existing connections.
644 *
645 * @since 0.3.0-alpha4
646 */
648 lib::error_code ec;
649 stop_listening(ec);
650 if (ec) { throw exception(ec); }
651 }
652#endif // _WEBSOCKETPP_NO_EXCEPTIONS_
653
654 /// Check if the endpoint is listening
655 /**
656 * @return Whether or not the endpoint is listening.
657 */
658 bool is_listening() const {
659 return (m_state == LISTENING);
660 }
661
662 /// wraps the run method of the internal io_context object
663 std::size_t run() {
664 return m_io_context->run();
665 }
666
667 /// wraps the run_one method of the internal io_context object
668 /**
669 * @since 0.3.0-alpha4
670 */
671 std::size_t run_one() {
672 return m_io_context->run_one();
673 }
674
675 /// wraps the stop method of the internal io_context object
676 void stop() {
677 m_io_context->stop();
678 }
679
680 /// wraps the poll method of the internal io_context object
681 std::size_t poll() {
682 return m_io_context->poll();
683 }
684
685 /// wraps the poll_one method of the internal io_context object
686 std::size_t poll_one() {
687 return m_io_context->poll_one();
688 }
689
690 /// wraps the restart method of the internal io_context object
691 void reset() {
692 m_io_context->restart();
693 }
694
695 /// wraps the stopped method of the internal io_context object
696 bool stopped() const {
697 return m_io_context->stopped();
698 }
699
700 /// Marks the endpoint as perpetual, stopping it from exiting when empty
701 /**
702 * Marks the endpoint as perpetual. Perpetual endpoints will not
703 * automatically exit when they run out of connections to process. To stop
704 * a perpetual endpoint call `end_perpetual`.
705 *
706 * An endpoint may be marked perpetual at any time by any thread. It must be
707 * called either before the endpoint has run out of work or before it was
708 * started
709 *
710 * @since 0.3.0
711 */
713 m_work_guard.reset(new lib::asio::executor_work_guard<lib::asio::io_context::executor_type>(m_io_context->get_executor()));
714 }
715
716 /// Clears the endpoint's perpetual flag, allowing it to exit when empty
717 /**
718 * Clears the endpoint's perpetual flag. This will cause the endpoint's run
719 * method to exit normally when it runs out of connections. If there are
720 * currently active connections it will not end until they are complete.
721 *
722 * @since 0.3.0
723 */
725 m_work_guard.reset();
726 }
727
728 /// Call back a function after a period of time.
729 /**
730 * Sets a timer that calls back a function after the specified period of
731 * milliseconds. Returns a handle that can be used to cancel the timer.
732 * A cancelled timer will return the error code error::operation_aborted
733 * A timer that expired will return no error.
734 *
735 * @param duration Length of time to wait in milliseconds
736 * @param callback The function to call back when the timer has expired
737 * @return A handle that can be used to cancel the timer if it is no longer
738 * needed.
739 */
740 timer_ptr set_timer(long duration, timer_handler callback) {
741 timer_ptr new_timer = lib::make_shared<lib::asio::steady_timer>(
742 *m_io_context,
743 lib::asio::milliseconds(duration)
744 );
745
746 new_timer->async_wait(
747 lib::bind(
749 this,
750 new_timer,
751 callback,
752 lib::placeholders::_1
753 )
754 );
755
756 return new_timer;
757 }
758
759 /// Timer handler
760 /**
761 * The timer pointer is included to ensure the timer isn't destroyed until
762 * after it has expired.
763 *
764 * @param t Pointer to the timer in question
765 * @param callback The function to call back
766 * @param ec A status code indicating an error, if any.
767 */
769 lib::asio::error_code const & ec)
770 {
771 if (ec) {
772 if (ec == lib::asio::error::operation_aborted) {
773 callback(make_error_code(transport::error::operation_aborted));
774 } else {
775 m_elog->write(log::elevel::info,
776 "asio handle_timer error: "+ec.message());
777 log_err(log::elevel::info,"asio handle_timer",ec);
778 callback(socket_con_type::translate_ec(ec));
779 }
780 } else {
781 callback(lib::error_code());
782 }
783 }
784
785 /// Accept the next connection attempt and assign it to con (exception free)
786 /**
787 * @param tcon The connection to accept into.
788 * @param callback The function to call when the operation is complete.
789 * @param ec A status code indicating an error, if any.
790 */
792 lib::error_code & ec)
793 {
794 if (m_state != LISTENING || !m_acceptor) {
795 using websocketpp::error::make_error_code;
797 return;
798 }
799
800 m_alog->write(log::alevel::devel, "asio::async_accept");
801
802 if (config::enable_multithreading) {
803 m_acceptor->async_accept(
804 tcon->get_raw_socket(),
805 lib::asio::bind_executor(*tcon->get_strand(), lib::bind(
806 &type::handle_accept,
807 this,
808 callback,
809 lib::placeholders::_1
810 ))
811 );
812 } else {
813 m_acceptor->async_accept(
814 tcon->get_raw_socket(),
815 lib::bind(
816 &type::handle_accept,
817 this,
818 callback,
819 lib::placeholders::_1
820 )
821 );
822 }
823 }
824
825#ifndef _WEBSOCKETPP_NO_EXCEPTIONS_
826 /// Accept the next connection attempt and assign it to con.
827 /**
828 * @param tcon The connection to accept into.
829 * @param callback The function to call when the operation is complete.
830 */
832 lib::error_code ec;
833 async_accept(tcon,callback,ec);
834 if (ec) { throw exception(ec); }
835 }
836#endif // _WEBSOCKETPP_NO_EXCEPTIONS_
837protected:
838 /// Initialize logging
839 /**
840 * The loggers are located in the main endpoint class. As such, the
841 * transport doesn't have direct access to them. This method is called
842 * by the endpoint constructor to allow shared logging from the transport
843 * component. These are raw pointers to member variables of the endpoint.
844 * In particular, they cannot be used in the transport constructor as they
845 * haven't been constructed yet, and cannot be used in the transport
846 * destructor as they will have been destroyed by then.
847 */
848 void init_logging(const lib::shared_ptr<alog_type>& a, const lib::shared_ptr<elog_type>& e) {
849 m_alog = a;
850 m_elog = e;
851 }
852
853 void handle_accept(accept_handler callback, lib::asio::error_code const &
854 asio_ec)
855 {
856 lib::error_code ret_ec;
857
858 m_alog->write(log::alevel::devel, "asio::handle_accept");
859
860 if (asio_ec) {
861 if (asio_ec == lib::asio::errc::operation_canceled) {
862 ret_ec = make_error_code(websocketpp::error::operation_canceled);
863 } else {
864 log_err(log::elevel::info,"asio handle_accept",asio_ec);
865 ret_ec = socket_con_type::translate_ec(asio_ec);
866 }
867 }
868
869 callback(ret_ec);
870 }
871
872 /// Initiate a new connection
873 // TODO: there have to be some more failure conditions here
875 using namespace lib::asio::ip;
876
877 // Create a resolver
878 if (!m_resolver) {
879 m_resolver.reset(new lib::asio::ip::tcp::resolver(*m_io_context));
880 }
881
882 tcon->set_uri(u);
883
884 std::string proxy = tcon->get_proxy();
885 std::string host;
886 std::string port;
887
888 if (proxy.empty()) {
889 host = u->get_host();
890 port = u->get_port_str();
891 } else {
892 lib::error_code ec;
893
894 uri_ptr pu = lib::make_shared<uri>(proxy);
895
896 if (!pu->get_valid()) {
898 return;
899 }
900
901 ec = tcon->proxy_init(u->get_authority());
902 if (ec) {
903 cb(ec);
904 return;
905 }
906
907 host = pu->get_host();
908 port = pu->get_port_str();
909 }
910
911 if (m_alog->static_test(log::alevel::devel)) {
912 m_alog->write(log::alevel::devel,
913 "starting async DNS resolve for "+host+":"+port);
914 }
915
916 timer_ptr dns_timer;
917
918 dns_timer = tcon->set_timer(
919 config::timeout_dns_resolve,
920 lib::bind(
922 this,
923 dns_timer,
924 cb,
925 lib::placeholders::_1
926 )
927 );
928
929 if (config::enable_multithreading) {
930 m_resolver->async_resolve(
931 host,
932 port,
933 lib::asio::bind_executor(*tcon->get_strand(), lib::bind(
934 &type::handle_resolve,
935 this,
936 tcon,
937 dns_timer,
938 cb,
939 lib::placeholders::_1,
940 lib::placeholders::_2
941 ))
942 );
943 } else {
944 m_resolver->async_resolve(
945 host,
946 port,
947 lib::bind(
948 &type::handle_resolve,
949 this,
950 tcon,
951 dns_timer,
952 cb,
953 lib::placeholders::_1,
954 lib::placeholders::_2
955 )
956 );
957 }
958 }
959
960 /// DNS resolution timeout handler
961 /**
962 * The timer pointer is included to ensure the timer isn't destroyed until
963 * after it has expired.
964 *
965 * @param dns_timer Pointer to the timer in question
966 * @param callback The function to call back
967 * @param ec A status code indicating an error, if any.
968 */
970 lib::error_code const & ec)
971 {
972 lib::error_code ret_ec;
973
974 if (ec) {
976 m_alog->write(log::alevel::devel,
977 "asio handle_resolve_timeout timer cancelled");
978 return;
979 }
980
981 log_err(log::elevel::devel,"asio handle_resolve_timeout",ec);
982 ret_ec = ec;
983 } else {
984 ret_ec = make_error_code(transport::error::timeout);
985 }
986
987 m_alog->write(log::alevel::devel,"DNS resolution timed out");
988 m_resolver->cancel();
989 callback(ret_ec);
990 }
991
992 void handle_resolve(transport_con_ptr tcon, timer_ptr dns_timer,
993 connect_handler callback, lib::asio::error_code const & ec,
994 lib::asio::ip::tcp::resolver::results_type results)
995 {
996 if (ec == lib::asio::error::operation_aborted ||
997 lib::asio::is_neg(dns_timer->expiry() - timer_ptr::element_type::clock_type::now()))
998 {
999 m_alog->write(log::alevel::devel,"async_resolve cancelled");
1000 return;
1001 }
1002
1003 dns_timer->cancel();
1004
1005 if (ec) {
1006 log_err(log::elevel::info,"asio async_resolve",ec);
1007 callback(socket_con_type::translate_ec(ec));
1008 return;
1009 }
1010
1011 if (m_alog->static_test(log::alevel::devel)) {
1012 std::stringstream s;
1013 s << "Async DNS resolve successful. Results: ";
1014
1015 lib::asio::ip::tcp::resolver::results_type::iterator it;
1016 for (it = results.begin(); it != results.end(); ++it) {
1017 s << (*it).endpoint() << " ";
1018 }
1019
1020 m_alog->write(log::alevel::devel,s.str());
1021 }
1022
1023 m_alog->write(log::alevel::devel,"Starting async connect");
1024
1025 timer_ptr con_timer;
1026
1027 con_timer = tcon->set_timer(
1028 config::timeout_connect,
1029 lib::bind(
1031 this,
1032 tcon,
1033 con_timer,
1034 callback,
1035 lib::placeholders::_1
1036 )
1037 );
1038
1039 if (config::enable_multithreading) {
1040 lib::asio::async_connect(
1041 tcon->get_raw_socket(),
1042 results,
1043 lib::asio::bind_executor(*tcon->get_strand(), lib::bind(
1044 &type::handle_connect,
1045 this,
1046 tcon,
1047 con_timer,
1048 callback,
1049 lib::placeholders::_1
1050 ))
1051 );
1052 } else {
1053 lib::asio::async_connect(
1054 tcon->get_raw_socket(),
1055 results,
1056 lib::bind(
1057 &type::handle_connect,
1058 this,
1059 tcon,
1060 con_timer,
1061 callback,
1062 lib::placeholders::_1
1063 )
1064 );
1065 }
1066 }
1067
1068 /// Asio connect timeout handler
1069 /**
1070 * The timer pointer is included to ensure the timer isn't destroyed until
1071 * after it has expired.
1072 *
1073 * @param tcon Pointer to the transport connection that is being connected
1074 * @param con_timer Pointer to the timer in question
1075 * @param callback The function to call back
1076 * @param ec A status code indicating an error, if any.
1077 */
1079 connect_handler callback, lib::error_code const & ec)
1080 {
1081 lib::error_code ret_ec;
1082
1083 if (ec) {
1085 m_alog->write(log::alevel::devel,
1086 "asio handle_connect_timeout timer cancelled");
1087 return;
1088 }
1089
1090 log_err(log::elevel::devel,"asio handle_connect_timeout",ec);
1091 ret_ec = ec;
1092 } else {
1093 ret_ec = make_error_code(transport::error::timeout);
1094 }
1095
1096 m_alog->write(log::alevel::devel,"TCP connect timed out");
1097 tcon->cancel_socket_checked();
1098 callback(ret_ec);
1099 }
1100
1101 void handle_connect(transport_con_ptr tcon, timer_ptr con_timer,
1102 connect_handler callback, lib::asio::error_code const & ec)
1103 {
1104 if (ec == lib::asio::error::operation_aborted ||
1105 lib::asio::is_neg(con_timer->expiry() - timer_ptr::element_type::clock_type::now()))
1106 {
1107 m_alog->write(log::alevel::devel,"async_connect cancelled");
1108 return;
1109 }
1110
1111 con_timer->cancel();
1112
1113 if (ec) {
1114 log_err(log::elevel::info,"asio async_connect",ec);
1115 callback(socket_con_type::translate_ec(ec));
1116 return;
1117 }
1118
1119 if (m_alog->static_test(log::alevel::devel)) {
1120 m_alog->write(log::alevel::devel,
1121 "Async connect to "+tcon->get_remote_endpoint()+" successful.");
1122 }
1123
1124 callback(lib::error_code());
1125 }
1126
1127 /// Initialize a connection
1128 /**
1129 * init is called by an endpoint once for each newly created connection.
1130 * It's purpose is to give the transport policy the chance to perform any
1131 * transport specific initialization that couldn't be done via the default
1132 * constructor.
1133 *
1134 * @param tcon A pointer to the transport portion of the connection.
1135 *
1136 * @return A status code indicating the success or failure of the operation
1137 */
1138 lib::error_code init(transport_con_ptr tcon) {
1139 m_alog->write(log::alevel::devel, "transport::asio::init");
1140
1141 // Initialize the connection socket component
1142 socket_type::init(lib::static_pointer_cast<socket_con_type,
1143 transport_con_type>(tcon));
1144
1145 lib::error_code ec;
1146
1147 ec = tcon->init_asio(m_io_context);
1148 if (ec) {return ec;}
1149
1150 tcon->set_tcp_pre_init_handler(m_tcp_pre_init_handler);
1151 tcon->set_tcp_post_init_handler(m_tcp_post_init_handler);
1152
1153 return lib::error_code();
1154 }
1155private:
1156 /// Convenience method for logging the code and message for an error_code
1157 template <typename error_type>
1158 void log_err(log::level l, char const * msg, error_type const & ec) {
1159 std::stringstream s;
1160 s << msg << " error: " << ec << " (" << ec.message() << ")";
1161 m_elog->write(l,s.str());
1162 }
1163
1164 /// Helper for cleaning up in the listen method after an error
1165 template <typename error_type>
1166 lib::error_code clean_up_listen_after_error(error_type const & ec) {
1167 if (m_acceptor->is_open()) {
1168 m_acceptor->close();
1169 }
1170 log_err(log::elevel::info,"asio listen",ec);
1171 return socket_con_type::translate_ec(ec);
1172 }
1173
1174 enum state {
1175 UNINITIALIZED = 0,
1176 READY = 1,
1177 LISTENING = 2
1178 };
1179
1180 // Handlers
1181 tcp_pre_bind_handler m_tcp_pre_bind_handler;
1182 tcp_init_handler m_tcp_pre_init_handler;
1183 tcp_init_handler m_tcp_post_init_handler;
1184
1185 // Network Resources
1186 io_context_ptr m_io_context;
1187 bool m_external_io_context;
1188 acceptor_ptr m_acceptor;
1189 resolver_ptr m_resolver;
1190 work_guard_ptr m_work_guard;
1191
1192 // Network constants
1193 int m_listen_backlog;
1194 bool m_reuse_addr;
1195
1196 lib::shared_ptr<elog_type> m_elog;
1197 lib::shared_ptr<alog_type> m_alog;
1198
1199 // Transport state
1200 state m_state;
1201};
1202
1203} // namespace asio
1204} // namespace transport
1205} // namespace websocketpp
1206
1207#endif // WEBSOCKETPP_TRANSPORT_ASIO_HPP
#define _WEBSOCKETPP_CPP11_FUNCTIONAL_
#define _WEBSOCKETPP_CPP11_THREAD_
#define _WEBSOCKETPP_CPP11_MEMORY_
#define _WEBSOCKETPP_CPP11_SYSTEM_ERROR_
Concurrency policy that uses std::mutex / boost::mutex.
Definition basic.hpp:37
Stub for user supplied base class.
Stub for user supplied base class.
Stub class for use when disabling permessage_deflate extension.
Definition disabled.hpp:53
err_str_pair negotiate(http::attribute_list const &)
Negotiate extension.
Definition disabled.hpp:65
std::string generate_offer() const
Generate extension offer.
Definition disabled.hpp:99
lib::error_code init(bool)
Initialize state.
Definition disabled.hpp:76
HTTP parser error category.
An exception type specific to HTTP errors.
header_list const & get_headers() const
Return a list of all HTTP headers.
Definition parser.hpp:211
std::string const & get_body() const
Get HTTP body.
Definition parser.hpp:515
bool body_ready() const
Check if the parser is done parsing the body.
Definition parser.hpp:618
void set_max_body_size(size_t value)
Set body size limit.
Definition parser.hpp:555
bool prepare_body(lib::error_code &ec)
Prepare the parser to begin parsing body data.
Definition parser.hpp:143
std::string raw_headers() const
Generate and return the HTTP headers as a string.
Definition parser.hpp:215
size_t process_body(char const *buf, size_t len, lib::error_code &ec)
Process body data.
Definition parser.hpp:172
std::string const & get_version() const
Get the HTTP version string.
Definition parser.hpp:410
size_t get_max_body_size() const
Get body size limit.
Definition parser.hpp:542
lib::error_code process_header(std::string::iterator begin, std::string::iterator end)
Process a header line.
Definition parser.hpp:191
Stores, parses, and manipulates HTTP requests.
Definition request.hpp:50
std::string raw() const
Returns the full raw request (including the body).
Definition request.hpp:195
std::string const & get_uri() const
Return the requested URI.
Definition request.hpp:123
std::string const & get_method() const
Return the request method.
Definition request.hpp:107
bool ready() const
Returns whether or not the request is ready for reading.
Definition request.hpp:85
size_t consume(char const *buf, size_t len, lib::error_code &ec)
Process bytes in the input buffer.
Definition request.hpp:41
std::string raw_head() const
Returns the raw request headers only (similar to an HTTP HEAD request).
Definition request.hpp:205
Stores, parses, and manipulates HTTP responses.
Definition response.hpp:57
std::string raw() const
Returns the full raw response.
Definition response.hpp:246
size_t consume(char const *buf, size_t len, lib::error_code &ec)
Process bytes in the input buffer.
Definition response.hpp:42
bool headers_ready() const
Returns true if the response headers are fully parsed.
Definition response.hpp:149
size_t consume(std::istream &s, lib::error_code &ec)
Process bytes in the input buffer (istream version).
Definition response.hpp:189
lib::error_code set_status(status_code::value code)
Set response status code and message.
Definition response.hpp:259
bool ready() const
Returns true if the response is ready.
Definition response.hpp:144
const std::string & get_status_msg() const
Return the response status message.
Definition response.hpp:190
status_code::value get_status_code() const
Return the response status code.
Definition response.hpp:185
Basic logger that outputs to an ostream.
Definition basic.hpp:59
void write(level channel, char const *msg)
Write a cstring message to the given channel.
Definition basic.hpp:151
basic(basic< concurrency, names > const &other)
Copy constructor.
Definition basic.hpp:87
~basic()
Destructor.
Definition basic.hpp:84
bool recycle(message *)
Recycle a message.
Definition alloc.hpp:80
message_ptr get_message(frame::opcode::value op, size_t size)
Get a message buffer with specified size and opcode.
Definition alloc.hpp:66
message_ptr get_message()
Get an empty message buffer.
Definition alloc.hpp:55
con_msg_man_ptr get_manager() const
Get a pointer to a connection message manager.
Definition alloc.hpp:96
Represents a buffer for a single WebSocket message.
Definition message.hpp:84
message(const con_msg_man_ptr manager, frame::opcode::value op, size_t size=128)
Construct a message and fill in some values.
Definition message.hpp:107
std::string & get_raw_payload()
Get a non-const reference to the payload string.
Definition message.hpp:254
bool recycle()
Recycle the message.
Definition message.hpp:316
bool get_compressed() const
Return whether or not the message is flagged as compressed.
Definition message.hpp:143
bool get_terminal() const
Get whether or not the message is terminal.
Definition message.hpp:169
std::string const & get_header() const
Return the prepared frame header.
Definition message.hpp:224
void set_payload(void const *payload, size_t len)
Set payload data.
Definition message.hpp:275
bool get_fin() const
Read the fin bit.
Definition message.hpp:195
void append_payload(void const *payload, size_t len)
Append payload data.
Definition message.hpp:298
void set_opcode(frame::opcode::value op)
Set the opcode.
Definition message.hpp:215
void set_prepared(bool value)
Set or clear the flag that indicates that the message has been prepared.
Definition message.hpp:135
frame::opcode::value get_opcode() const
Return the message opcode.
Definition message.hpp:210
void set_terminal(bool value)
Set the terminal flag.
Definition message.hpp:181
bool get_prepared() const
Return whether or not the message has been prepared for sending.
Definition message.hpp:125
void set_compressed(bool value)
Set or clear the compression flag.
Definition message.hpp:156
message(const con_msg_man_ptr manager)
Construct an empty message.
Definition message.hpp:96
void set_fin(bool value)
Set the fin bit.
Definition message.hpp:205
std::string const & get_payload() const
Get a reference to the payload string.
Definition message.hpp:246
Thread safe stub "random" integer generator.
Definition none.hpp:46
int_type operator()()
advances the engine's state and returns the generated value
Definition none.hpp:51
Server endpoint role based on the given config.
Basic ASIO endpoint socket component.
Definition none.hpp:318
Asio based connection transport component.
Asio based endpoint transport component.
Definition endpoint.hpp:54
lib::shared_ptr< lib::asio::executor_work_guard< lib::asio::io_context::executor_type > > work_guard_ptr
Type of a shared pointer to an io_context work object.
Definition endpoint.hpp:89
std::size_t run_one()
wraps the run_one method of the internal io_context object
Definition endpoint.hpp:671
socket_type::socket_con_type socket_con_type
Type of the socket connection component.
Definition endpoint.hpp:69
void stop_listening(lib::error_code &ec)
Stop listening (exception free).
Definition endpoint.hpp:546
config::socket_type socket_type
Type of the socket policy.
Definition endpoint.hpp:62
lib::shared_ptr< lib::asio::steady_timer > timer_ptr
Type of timer handle.
Definition endpoint.hpp:87
void async_connect(transport_con_ptr tcon, uri_ptr u, connect_handler cb)
Initiate a new connection.
Definition endpoint.hpp:874
void init_asio()
Initialize asio transport with internal io_context.
Definition endpoint.hpp:252
config::elog_type elog_type
Type of the error logging policy.
Definition endpoint.hpp:64
void init_logging(const lib::shared_ptr< alog_type > &a, const lib::shared_ptr< elog_type > &e)
Initialize logging.
Definition endpoint.hpp:848
lib::asio::io_context * io_context_ptr
Type of a pointer to the ASIO io_context being used.
Definition endpoint.hpp:81
bool is_secure() const
Return whether or not the endpoint produces secure connections.
Definition endpoint.hpp:172
lib::asio::ip::tcp::endpoint get_local_endpoint(lib::asio::error_code &ec)
Get local TCP endpoint.
Definition endpoint.hpp:399
void set_reuse_addr(bool value)
Sets whether to use the SO_REUSEADDR flag when opening listening sockets.
Definition endpoint.hpp:367
void set_tcp_init_handler(tcp_init_handler h)
Sets the tcp pre init handler (deprecated).
Definition endpoint.hpp:306
void handle_timer(timer_ptr, timer_handler callback, lib::asio::error_code const &ec)
Timer handler.
Definition endpoint.hpp:768
void start_perpetual()
Marks the endpoint as perpetual, stopping it from exiting when empty.
Definition endpoint.hpp:712
void stop()
wraps the stop method of the internal io_context object
Definition endpoint.hpp:676
std::size_t run()
wraps the run method of the internal io_context object
Definition endpoint.hpp:663
void set_tcp_post_init_handler(tcp_init_handler h)
Sets the tcp post init handler.
Definition endpoint.hpp:321
void set_listen_backlog(int backlog)
Sets the maximum length of the queue of pending connections.
Definition endpoint.hpp:346
bool stopped() const
wraps the stopped method of the internal io_context object
Definition endpoint.hpp:696
timer_ptr set_timer(long duration, timer_handler callback)
Call back a function after a period of time.
Definition endpoint.hpp:740
socket_con_type::ptr socket_con_ptr
Type of a shared pointer to the socket connection component.
Definition endpoint.hpp:71
lib::error_code init(transport_con_ptr tcon)
Initialize a connection.
asio::connection< config > transport_con_type
Definition endpoint.hpp:75
void init_asio(lib::error_code &ec)
Initialize asio transport with internal io_context (exception free).
Definition endpoint.hpp:229
void async_accept(transport_con_ptr tcon, accept_handler callback)
Accept the next connection attempt and assign it to con.
Definition endpoint.hpp:831
void listen(uint16_t port)
Set up endpoint for listening on a port.
Definition endpoint.hpp:607
endpoint< config > type
Type of this endpoint transport component.
Definition endpoint.hpp:57
void init_asio(io_context_ptr ptr, lib::error_code &ec)
initialize asio transport with external io_context (exception free)
Definition endpoint.hpp:185
config::concurrency_type concurrency_type
Type of the concurrency policy.
Definition endpoint.hpp:60
std::size_t poll()
wraps the poll method of the internal io_context object
Definition endpoint.hpp:681
void stop_perpetual()
Clears the endpoint's perpetual flag, allowing it to exit when empty.
Definition endpoint.hpp:724
void init_asio(io_context_ptr ptr)
initialize asio transport with external io_context
Definition endpoint.hpp:213
lib::shared_ptr< lib::asio::ip::tcp::acceptor > acceptor_ptr
Type of a shared pointer to the acceptor being used.
Definition endpoint.hpp:83
void listen(lib::asio::ip::tcp::endpoint const &ep)
Set up endpoint for listening manually.
Definition endpoint.hpp:569
lib::asio::io_context & get_io_context()
Retrieve a reference to the endpoint's io_context.
Definition endpoint.hpp:382
void handle_resolve_timeout(timer_ptr, connect_handler callback, lib::error_code const &ec)
DNS resolution timeout handler.
Definition endpoint.hpp:969
void listen(lib::asio::ip::tcp::endpoint const &ep, lib::error_code &ec)
Set up endpoint for listening manually (exception free).
Definition endpoint.hpp:416
transport_con_type::ptr transport_con_ptr
Definition endpoint.hpp:78
void reset()
wraps the restart method of the internal io_context object
Definition endpoint.hpp:691
void set_tcp_pre_bind_handler(tcp_pre_bind_handler h)
Sets the tcp pre bind handler.
Definition endpoint.hpp:278
config::alog_type alog_type
Type of the access logging policy.
Definition endpoint.hpp:66
void listen(InternetProtocol const &internet_protocol, uint16_t port)
Set up endpoint for listening with protocol and port.
Definition endpoint.hpp:589
void set_tcp_pre_init_handler(tcp_init_handler h)
Sets the tcp pre init handler.
Definition endpoint.hpp:292
void handle_connect_timeout(transport_con_ptr tcon, timer_ptr, connect_handler callback, lib::error_code const &ec)
Asio connect timeout handler.
void async_accept(transport_con_ptr tcon, accept_handler callback, lib::error_code &ec)
Accept the next connection attempt and assign it to con (exception free).
Definition endpoint.hpp:791
std::size_t poll_one()
wraps the poll_one method of the internal io_context object
Definition endpoint.hpp:686
void listen(InternetProtocol const &internet_protocol, uint16_t port, lib::error_code &ec)
Set up endpoint for listening with protocol and port (exception free).
Definition endpoint.hpp:471
void listen(uint16_t port, lib::error_code &ec)
Set up endpoint for listening on a port (exception free).
Definition endpoint.hpp:490
bool is_listening() const
Check if the endpoint is listening.
Definition endpoint.hpp:658
void stop_listening()
Stop listening.
Definition endpoint.hpp:647
lib::shared_ptr< lib::asio::ip::tcp::resolver > resolver_ptr
Type of a shared pointer to the resolver being used.
Definition endpoint.hpp:85
lib::function< lib::error_code(acceptor_ptr)> tcp_pre_bind_handler
Type of socket pre-bind handler.
Definition endpoint.hpp:92
lib::shared_ptr< type > ptr
Type of a shared pointer to this connection transport component.
connection_hdl get_handle() const
Get the connection handle.
config::alog_type alog_type
Type of this transport's access logging policy.
lib::error_code dispatch(dispatch_handler handler)
Call given handler back within the transport's event system (if present).
void async_shutdown(transport::shutdown_handler handler)
Perform cleanup on socket shutdown_handler.
void set_write_handler(write_handler h)
Sets the write handler.
void set_secure(bool value)
Set whether or not this connection is secure.
void set_shutdown_handler(shutdown_handler h)
Sets the shutdown handler.
connection< config > type
Type of this connection transport component.
config::elog_type elog_type
Type of this transport's error logging policy.
void fatal_error()
Signal transport error.
size_t read_some(char const *buf, size_t len)
Manual input supply (read some).
size_t read_all(char const *buf, size_t len)
Manual input supply (read all).
void async_write(char const *buf, size_t len, transport::write_handler handler)
Asyncronous Transport Write.
size_t readsome(char const *buf, size_t len)
Manual input supply (DEPRECATED).
config::concurrency_type concurrency_type
transport concurrency policy
void init(init_handler handler)
Initialize the connection transport.
timer_ptr set_timer(long, timer_handler)
Call back a function after a period of time.
friend std::istream & operator>>(std::istream &in, type &t)
Overloaded stream input operator.
void set_vector_write_handler(vector_write_handler h)
Sets the vectored write handler.
bool is_secure() const
Tests whether or not the underlying transport is secure.
std::string get_remote_endpoint() const
Get human readable remote endpoint address.
void set_handle(connection_hdl hdl)
Set Connection Handle.
void register_ostream(std::ostream *o)
Register a std::ostream with the transport for writing output.
void async_read_at_least(size_t num_bytes, char *buf, size_t len, read_handler handler)
Initiate an async_read for at least num_bytes bytes into buf.
void async_write(std::vector< buffer > const &bufs, transport::write_handler handler)
Asyncronous Transport Write (scatter-gather).
ptr get_shared()
Get a shared pointer to this component.
iostream::connection< config > transport_con_type
Definition endpoint.hpp:62
config::elog_type elog_type
Type of this endpoint's error logging policy.
Definition endpoint.hpp:56
void set_write_handler(write_handler h)
Sets the write handler.
Definition endpoint.hpp:134
void set_shutdown_handler(shutdown_handler h)
Sets the shutdown handler.
Definition endpoint.hpp:154
bool is_secure() const
Tests whether or not the underlying transport is secure.
Definition endpoint.hpp:116
lib::shared_ptr< type > ptr
Type of a pointer to this endpoint transport component.
Definition endpoint.hpp:51
transport_con_type::ptr transport_con_ptr
Definition endpoint.hpp:65
void async_connect(transport_con_ptr, uri_ptr, connect_handler cb)
Initiate a new connection.
Definition endpoint.hpp:183
lib::error_code init(transport_con_ptr tcon)
Initialize a connection.
Definition endpoint.hpp:197
void init_logging(lib::shared_ptr< alog_type > a, lib::shared_ptr< elog_type > e)
Initialize logging.
Definition endpoint.hpp:171
endpoint type
Type of this endpoint transport component.
Definition endpoint.hpp:49
void register_ostream(std::ostream *o)
Register a default output stream.
Definition endpoint.hpp:80
config::concurrency_type concurrency_type
Type of this endpoint's concurrency policy.
Definition endpoint.hpp:54
void set_secure(bool value)
Set whether or not endpoint can create secure connections.
Definition endpoint.hpp:102
config::alog_type alog_type
Type of this endpoint's access logging policy.
Definition endpoint.hpp:58
iostream transport error category
Definition base.hpp:85
std::string get_query() const
Return the query portion.
Definition uri.hpp:732
bool is_ipv6_literal() const
Definition uri.hpp:651
#define _WEBSOCKETPP_CONSTEXPR_TOKEN_
Definition cpp11.hpp:134
#define _WEBSOCKETPP_NOEXCEPT_TOKEN_
Definition cpp11.hpp:115
#define __has_extension
Definition cpp11.hpp:40
#define __has_feature(x)
Definition cpp11.hpp:37
Concurrency handling support.
Definition basic.hpp:34
Library level error codes.
Definition error.hpp:44
@ general
Catch-all library error.
Definition error.hpp:47
@ unrequested_subprotocol
Selected subprotocol was not requested by the client.
Definition error.hpp:102
@ invalid_port
Invalid port in URI.
Definition error.hpp:120
@ client_only
Attempted to use a client specific feature on a server endpoint.
Definition error.hpp:105
@ http_connection_ended
HTTP connection ended.
Definition error.hpp:111
@ operation_canceled
The requested operation was canceled.
Definition error.hpp:127
@ no_outgoing_buffers
The endpoint is out of outgoing message buffers.
Definition error.hpp:68
@ http_parse_error
HTTP parse error.
Definition error.hpp:143
@ reserved_close_code
Close code is in a reserved range.
Definition error.hpp:80
@ con_creation_failed
Connection creation attempted failed.
Definition error.hpp:99
@ no_incoming_buffers
The endpoint is out of incoming message buffers.
Definition error.hpp:71
@ invalid_state
The connection was in the wrong state for this operation.
Definition error.hpp:74
@ extension_neg_failed
Extension negotiation failed.
Definition error.hpp:146
@ rejected
Connection rejected.
Definition error.hpp:130
@ unsupported_version
Unsupported WebSocket protocol version.
Definition error.hpp:140
@ invalid_utf8
Invalid UTF-8.
Definition error.hpp:86
@ invalid_close_code
Close code is invalid.
Definition error.hpp:83
@ server_only
Attempted to use a server specific feature on a client endpoint.
Definition error.hpp:108
@ endpoint_not_secure
Attempted to open a secure connection with an insecure endpoint.
Definition error.hpp:57
@ close_handshake_timeout
WebSocket close handshake timed out.
Definition error.hpp:117
@ invalid_subprotocol
Invalid subprotocol.
Definition error.hpp:89
@ bad_close_code
Unable to parse close code.
Definition error.hpp:77
@ open_handshake_timeout
WebSocket opening handshake timed out.
Definition error.hpp:114
@ invalid_version
Invalid WebSocket protocol version.
Definition error.hpp:137
@ transport_error
General transport error, consult more specific transport error code.
Definition error.hpp:149
@ send_queue_full
send attempted when endpoint write queue was full
Definition error.hpp:50
@ test
Unit testing utility error code.
Definition error.hpp:96
@ invalid_uri
An invalid uri was supplied.
Definition error.hpp:65
Implementation of RFC 7692, the permessage-deflate WebSocket extension.
Definition disabled.hpp:44
Constants related to frame and payload limits.
Definition frame.hpp:145
static uint8_t const close_reason_size
Maximum size of close frame reason.
Definition frame.hpp:169
static uint64_t const payload_size_jumbo
Maximum size of a jumbo WebSocket payload (basic payload = 127).
Definition frame.hpp:162
static unsigned int const max_extended_header_length
Maximum length of the variable portion of the WebSocket header.
Definition frame.hpp:153
static unsigned int const max_header_length
Maximum length of a WebSocket header.
Definition frame.hpp:150
static uint16_t const payload_size_extended
Maximum size of an extended WebSocket payload (basic payload = 126).
Definition frame.hpp:159
static uint8_t const payload_size_basic
Maximum size of a basic WebSocket payload.
Definition frame.hpp:156
static unsigned int const basic_header_length
Minimum length of a WebSocket frame header.
Definition frame.hpp:147
Constants and utility functions related to WebSocket opcodes.
Definition frame.hpp:76
bool invalid(value v)
Check if an opcode is invalid.
Definition frame.hpp:130
bool reserved(value v)
Check if an opcode is reserved.
Definition frame.hpp:118
bool is_control(value v)
Check if an opcode is for a control frame.
Definition frame.hpp:139
Data structures and utility functions for manipulating WebSocket frames.
Definition frame.hpp:45
unsigned int get_masking_key_offset(basic_header const &)
Calculate the offset location of the masking key within the extended header.
Definition frame.hpp:469
void set_rsv2(basic_header &h, bool value)
Set the frame's RSV2 bit.
Definition frame.hpp:366
static unsigned int const MAX_HEADER_LENGTH
Maximum length of a WebSocket header.
Definition frame.hpp:50
opcode::value get_opcode(basic_header const &h)
Extract opcode from basic header.
Definition frame.hpp:393
void set_rsv3(basic_header &h, bool value)
Set the frame's RSV3 bit.
Definition frame.hpp:384
uint64_t get_payload_size(basic_header const &, extended_header const &)
Extract the full payload size field from a WebSocket header.
Definition frame.hpp:573
uint8_t get_basic_size(basic_header const &)
Extracts the raw payload length specified in the basic header.
Definition frame.hpp:431
size_t byte_mask_circ(uint8_t *input, uint8_t *output, size_t length, size_t prepared_key)
Circular byte aligned mask/unmask.
Definition frame.hpp:830
void byte_mask(input_iter b, input_iter e, output_iter o, masking_key_type const &key, size_t key_offset=0)
Byte by byte mask/unmask.
Definition frame.hpp:645
static unsigned int const MAX_EXTENDED_HEADER_LENGTH
Maximum length of the variable portion of the WebSocket header.
Definition frame.hpp:52
bool get_rsv3(basic_header const &h)
check whether the frame's RSV3 bit is set
Definition frame.hpp:375
bool get_masked(basic_header const &h)
check whether the frame is masked
Definition frame.hpp:402
bool get_rsv2(basic_header const &h)
check whether the frame's RSV2 bit is set
Definition frame.hpp:357
void byte_mask(iter_type b, iter_type e, masking_key_type const &key, size_t key_offset=0)
Byte by byte mask/unmask (in place).
Definition frame.hpp:675
uint16_t get_extended_size(extended_header const &)
Extract the extended size field from an extended header.
Definition frame.hpp:540
size_t byte_mask_circ(uint8_t *data, size_t length, size_t prepared_key)
Circular byte aligned mask/unmask (in place).
Definition frame.hpp:857
bool get_fin(basic_header const &h)
Check whether the frame's FIN bit is set.
Definition frame.hpp:321
size_t circshift_prepared_key(size_t prepared_key, size_t offset)
circularly shifts the supplied prepared masking key by offset bytes
Definition frame.hpp:612
bool get_rsv1(basic_header const &h)
check whether the frame's RSV1 bit is set
Definition frame.hpp:339
void set_masked(basic_header &h, bool value)
Set the frame's MASK bit.
Definition frame.hpp:411
size_t word_mask_circ(uint8_t *input, uint8_t *output, size_t length, size_t prepared_key)
Circular word aligned mask/unmask.
Definition frame.hpp:768
void word_mask_exact(uint8_t *data, size_t length, masking_key_type const &key)
Exact word aligned mask/unmask (in place).
Definition frame.hpp:731
void set_rsv1(basic_header &h, bool value)
Set the frame's RSV1 bit.
Definition frame.hpp:348
size_t get_header_len(basic_header const &)
Calculates the full length of the header based on the first bytes.
Definition frame.hpp:445
void set_fin(basic_header &h, bool value)
Set the frame's FIN bit.
Definition frame.hpp:330
uint64_t get_jumbo_size(extended_header const &)
Extract the jumbo size field from an extended header.
Definition frame.hpp:555
void word_mask_exact(uint8_t *input, uint8_t *output, size_t length, masking_key_type const &key)
Exact word aligned mask/unmask.
Definition frame.hpp:702
std::string prepare_header(const basic_header &h, const extended_header &e)
Generate a properly sized contiguous string that encodes a full frame header.
Definition frame.hpp:489
masking_key_type get_masking_key(basic_header const &, extended_header const &)
Extract the masking key from a frame header.
Definition frame.hpp:516
static unsigned int const BASIC_HEADER_LENGTH
Minimum length of a WebSocket frame header.
Definition frame.hpp:48
size_t word_mask_circ(uint8_t *data, size_t length, size_t prepared_key)
Circular word aligned mask/unmask (in place).
Definition frame.hpp:805
size_t prepare_masking_key(masking_key_type const &key)
Extract a masking key into a value the size of a machine word.
Definition frame.hpp:595
HTTP parser errors.
status_code::value get_status_code(error::value value)
Get the HTTP status code associated with the error.
lib::error_category const & get_category()
Get a reference to a static copy of the asio transport error category.
@ unknown_transfer_encoding
The transfer encoding is unknown.
@ istream_bad
An istream read command returned with the bad flag set.
@ invalid_format
The specified data contains illegal characters for the context.
@ body_too_large
The body value is larger than the configured maximum size.
@ incomplete_request
The request was missing some required values.
@ unsupported_transfer_encoding
The transfer encoding is not supported.
@ incomplete_status_line
The response status line was missing some required values.
@ missing_header_separator
A header line was missing a separator.
@ invalid_header_name
The header name specified contains illegal characters.
@ request_header_fields_too_large
The request headers are larger than the configured maximum size.
lib::error_code make_error_code(error::value e)
Create an error code with the given value and the asio transport category.
std::string get_string(value code)
Given a status code value, return the default status message.
value
Known values for HTTP Status codes.
HTTP handling support.
Definition request.hpp:37
size_t const max_body_size
Default Maximum size in bytes for HTTP message bodies.
Definition constants.hpp:71
static char const header_separator[]
Literal value of the HTTP header separator.
Definition constants.hpp:62
std::vector< std::pair< std::string, attribute_list > > parameter_list
The type of an HTTP parameter list.
Definition constants.hpp:56
size_t const istream_buffer
Number of bytes to use for temporary istream read buffers.
Definition constants.hpp:74
bool is_not_token_char(unsigned char c)
Is the character a non-token.
size_t const max_header_size
Maximum size in bytes before rejecting an HTTP header as too big.
Definition constants.hpp:68
static char const header_delimiter[]
Literal value of the HTTP header delimiter.
Definition constants.hpp:59
bool is_whitespace_char(unsigned char c)
Is the character whitespace.
static char const header_token[]
invalid HTTP token characters
Definition constants.hpp:81
bool is_not_whitespace_char(unsigned char c)
Is the character non-whitespace.
std::map< std::string, std::string > attribute_list
The type of an HTTP attribute list.
Definition constants.hpp:48
bool is_token_char(unsigned char c)
Is the character a token.
static std::string const empty_header
Literal value of an empty header.
Definition constants.hpp:65
Stub RNG policy that always returns 0.
Definition none.hpp:35
Random number generation policies.
Asio transport errors.
Definition base.hpp:161
lib::error_code make_error_code(error::value e)
Create an error code with the given value and the asio transport category.
Definition base.hpp:217
@ proxy_invalid
Invalid Proxy URI.
Definition base.hpp:177
@ invalid_host_service
Invalid host or service.
Definition base.hpp:180
Transport policy that uses asio.
Definition endpoint.hpp:46
Generic transport related errors.
@ pass_through
underlying transport pass through
@ operation_not_supported
Operation not supported.
@ operation_aborted
Operation aborted.
@ invalid_num_bytes
async_read_at_least call requested more bytes than buffer can store
@ action_after_shutdown
read or write after shutdown
@ tls_short_read
TLS short read.
@ double_read
async_read called while another async_read was in progress
iostream transport errors
Definition base.hpp:64
@ invalid_num_bytes
async_read_at_least call requested more bytes than buffer can store
Definition base.hpp:71
@ double_read
async_read called while another async_read was in progress
Definition base.hpp:74
lib::error_code make_error_code(error::value e)
Get an error code with the given value and the iostream transport category.
Definition base.hpp:118
lib::error_category const & get_category()
Get a reference to a static copy of the iostream transport error category.
Definition base.hpp:112
Transport policy that uses STL iostream for I/O and does not support timers.
Definition endpoint.hpp:43
lib::function< lib::error_code(connection_hdl, std::vector< transport::buffer > const &bufs)> vector_write_handler
Definition base.hpp:57
lib::function< lib::error_code(connection_hdl)> shutdown_handler
Definition base.hpp:61
lib::function< lib::error_code(connection_hdl, char const *, size_t)> write_handler
The type and signature of the callback used by iostream transport to write.
Definition base.hpp:48
Transport policies provide network connectivity and timers.
Definition endpoint.hpp:45
lib::function< void(lib::error_code const &, size_t)> read_handler
The type and signature of the callback passed to the read method.
lib::function< void()> dispatch_handler
The type and signature of the callback passed to the dispatch method.
lib::function< void()> interrupt_handler
The type and signature of the callback passed to the interrupt method.
lib::function< void(lib::error_code const &)> accept_handler
The type and signature of the callback passed to the accept method.
Definition endpoint.hpp:80
lib::function< void(lib::error_code const &)> timer_handler
The type and signature of the callback passed to the read method.
lib::function< void(lib::error_code const &)> connect_handler
The type and signature of the callback passed to the connect method.
Definition endpoint.hpp:83
lib::function< void(lib::error_code const &)> write_handler
The type and signature of the callback passed to the write method.
lib::function< void(lib::error_code const &)> init_handler
The type and signature of the callback passed to the init hook.
lib::function< void(lib::error_code const &)> shutdown_handler
The type and signature of the callback passed to the shutdown method.
A group of helper methods for parsing and validating URIs against RFC 3986.
Definition uri.hpp:52
bool digit(char c)
RFC3986 digit character test.
Definition uri.hpp:184
bool gen_delim(char c)
RFC3986 generic delimiter character test.
Definition uri.hpp:78
bool digit(std::string::const_iterator it)
RFC3986 digit character test (iterator version).
Definition uri.hpp:195
bool ipv4_literal(std::string::const_iterator start, std::string::const_iterator end)
Tests a range for a valid IPv4 literal.
Definition uri.hpp:250
bool sub_delim(char c)
RFC3986 subcomponent delimiter character test.
Definition uri.hpp:100
bool reg_name(std::string::const_iterator start, std::string::const_iterator end)
Tests a range for validity for a registry name.
Definition uri.hpp:373
bool pct_encoded(std::string::const_iterator it)
RFC3986 per cent encoded character test.
Definition uri.hpp:211
bool scheme(char c)
RFC3986 scheme character test.
Definition uri.hpp:165
bool unreserved(char c)
RFC3986 unreserved character test.
Definition uri.hpp:61
bool reg_name(char c)
Tests a character for validity for a registry name.
Definition uri.hpp:361
bool hex4(std::string::const_iterator start, std::string::const_iterator end)
Tests a range for a valid IPv6 hex quad.
Definition uri.hpp:279
bool dec_octet(std::string::const_iterator start, std::string::const_iterator end)
Tests a range for a valid IPv4 decimal octet.
Definition uri.hpp:223
bool ipv6_literal(std::string::const_iterator start, std::string::const_iterator end)
Tests a range for a valid IPv6 literal.
Definition uri.hpp:299
bool hexdigit(char c)
RFC3986 hex digit character test.
Definition uri.hpp:128
Generic non-websocket specific utility functions and data structures.
Definition utilities.hpp:39
std::string to_hex(uint8_t const *input, size_t length)
Convert byte array (uint8_t) to ascii printed string of hex digits.
T::const_iterator ci_find_substr(T const &haystack, T const &needle, std::locale const &loc=std::locale())
Find substring (case insensitive).
T::const_iterator ci_find_substr(T const &haystack, typename T::value_type const *needle, typename T::size_type size, std::locale const &loc=std::locale())
Find substring (case insensitive).
std::string to_hex(char const *input, size_t length)
Convert char array to ascii printed string of hex digits.
Namespace for the WebSocket++ project.
static uint16_t const uri_default_secure_port
Default port for wss://.
Definition uri.hpp:47
lib::weak_ptr< void > connection_hdl
A handle to uniquely identify a connection.
static uint16_t const uri_default_port
Default port for ws://.
Definition uri.hpp:45
lib::shared_ptr< uri > uri_ptr
Pointer to a URI.
Definition uri.hpp:791
std::pair< lib::error_code, std::string > err_str_pair
Combination error code / string type for returning two values.
Definition error.hpp:41
#define TYP_BIGE
Definition network.hpp:53
#define TYP_SMLE
Definition network.hpp:52
#define TYP_INIT
Definition network.hpp:51
Server config with asio transport and TLS disabled.
static const long timeout_socket_shutdown
Length of time to wait for socket shutdown.
Definition core.hpp:137
static const long timeout_connect
Length of time to wait for TCP connect.
Definition core.hpp:134
static const long timeout_dns_resolve
Length of time to wait for dns resolution.
Definition core.hpp:131
static const long timeout_proxy
Length of time to wait before a proxy handshake is aborted.
Definition core.hpp:121
static const long timeout_socket_pre_init
Default timer values (in ms).
Definition core.hpp:118
static const long timeout_socket_post_init
Length of time to wait for socket post-initialization.
Definition core.hpp:128
Server config with iostream transport.
Definition core.hpp:68
websocketpp::random::none::int_generator< uint32_t > rng_type
RNG policies.
Definition core.hpp:93
static const websocketpp::log::level elog_level
Default static error logging channels.
Definition core.hpp:176
websocketpp::transport::iostream::endpoint< transport_config > transport_type
Transport Endpoint Component.
Definition core.hpp:142
static const size_t max_http_body_size
Default maximum http body size.
Definition core.hpp:252
static const long timeout_open_handshake
Default timer values (in ms).
Definition core.hpp:152
static const size_t max_message_size
Default maximum message size.
Definition core.hpp:240
static const bool drop_on_protocol_error
Drop connections immediately on protocol error.
Definition core.hpp:213
static const long timeout_close_handshake
Length of time before a closing handshake is aborted.
Definition core.hpp:154
static const websocketpp::log::level alog_level
Default static access logging channels.
Definition core.hpp:189
websocketpp::log::basic< concurrency_type, websocketpp::log::elevel > elog_type
Logging policies.
Definition core.hpp:88
static const long timeout_pong
Length of time to wait for a pong after a ping.
Definition core.hpp:156
static const bool silent_close
Suppresses the return of detailed connection close information.
Definition core.hpp:228
static bool const enable_multithreading
Definition core.hpp:98
static const size_t connection_read_buffer_size
Size of the per-connection read buffer.
Definition core.hpp:204
static const bool enable_extensions
Global flag for enabling/disabling extensions.
Definition core.hpp:255
static const int client_version
WebSocket Protocol version to use as a client.
Definition core.hpp:164
The constant size component of a WebSocket frame header.
Definition frame.hpp:189
The variable size component of a WebSocket frame header.
Definition frame.hpp:235
Package of log levels for logging access events.
Definition levels.hpp:112
static char const * channel_name(level channel)
Get the textual name of a channel given a channel id.
Definition levels.hpp:164
static level const fail
One line for each failed WebSocket connection with details.
Definition levels.hpp:147
static level const none
Special aggregate value representing "no levels".
Definition levels.hpp:114
static level const debug_handshake
Extra information about opening handshakes.
Definition levels.hpp:137
static level const devel
Development messages (warning: very chatty).
Definition levels.hpp:141
static level const all
Special aggregate value representing "all levels".
Definition levels.hpp:152
static level const debug_close
Extra information about closing handshakes.
Definition levels.hpp:139
static level const frame_payload
One line per frame, includes the full message payload (warning: chatty).
Definition levels.hpp:129
static level const connect
Information about new connections.
Definition levels.hpp:121
static level const app
Special channel for application specific logs. Not used by the library.
Definition levels.hpp:143
static level const frame_header
One line per frame, includes the full frame header.
Definition levels.hpp:127
static level const message_payload
Reserved.
Definition levels.hpp:133
static level const endpoint
Reserved.
Definition levels.hpp:135
static level const message_header
Reserved.
Definition levels.hpp:131
static level const control
One line per control frame.
Definition levels.hpp:125
static level const disconnect
One line for each closed connection. Includes closing codes and reasons.
Definition levels.hpp:123
static level const access_core
Definition levels.hpp:150
static level const http
Access related to HTTP requests.
Definition levels.hpp:145
Package of values for hinting at the nature of a given logger.
Definition levels.hpp:46
static value const none
No information.
Definition levels.hpp:51
static value const access
Access log.
Definition levels.hpp:53
static value const error
Error log.
Definition levels.hpp:55
uint32_t value
Type of a channel type hint value.
Definition levels.hpp:48
Package of log levels for logging errors.
Definition levels.hpp:59
static level const devel
Low level debugging information (warning: very chatty).
Definition levels.hpp:63
static char const * channel_name(level channel)
Get the textual name of a channel given a channel id.
Definition levels.hpp:91
static level const library
Definition levels.hpp:66
static level const info
Definition levels.hpp:69
static level const all
Special aggregate value representing "all levels".
Definition levels.hpp:80
static level const fatal
Definition levels.hpp:78
static level const none
Special aggregate value representing "no levels".
Definition levels.hpp:61
static level const rerror
Definition levels.hpp:75
static level const warn
Definition levels.hpp:72
A simple utility buffer class.
Helper less than functor for case insensitive find.
Definition utilities.hpp:75
Helper functor for case insensitive find.
Definition utilities.hpp:49
bool operator()(charT ch1, charT ch2)
Perform a case insensitive comparison.
Definition utilities.hpp:63
my_equal(std::locale const &loc)
Construct the functor with the given locale.
Definition utilities.hpp:54
#define _WEBSOCKETPP_ERROR_CODE_ENUM_NS_END_
#define _WEBSOCKETPP_ERROR_CODE_ENUM_NS_START_
Two byte conversion union.
Definition frame.hpp:55
Four byte conversion union.
Definition frame.hpp:61
Eight byte conversion union.
Definition frame.hpp:67