From b6ed4f6db230628fc409fa1f868ab0b96c9f0018 Mon Sep 17 00:00:00 2001 From: hical <15002054049@163.com> Date: Thu, 3 Sep 2026 11:57:02 +0800 Subject: [PATCH 1/2] Re-enable Hical after fixing TCP fragmentation chunked-decode bug Hical was disabled in #1289 after failing the exhaustive TCP fragmentation check (#1285): ~9% of split offsets on chunked POST requests were answered 400 Bad Request. Root cause: the chunked-body decoder tracked its position with an encodeStart offset and advanced it by phr_decode_chunked's *output* byte count, treating output length as consumption. When a chunk frame was split across TCP reads at a point inside the frame, the offset drifted and the decoder misreported a malformed-encoding error. This is the 'narrow slice' class of defect from #1289, not a parser that cannot reassemble. Fixed upstream in Hical61/Hical commit a5abb27, which drops the manual offset tracking and re-decodes unconsumed data from the front each pass, relying on phr_decode_chunked's decoder state machine across recv() calls. Three fragmentation regression tests were added. This PR: - re-enables the entry (enabled: false -> true) - pins HICAL_REF to a5abb27c59e604a5fe15dfde49c634de5a13efce Please re-run the benchmark and the exhaustive fragmentation validation. --- frameworks/hical/Dockerfile | 2 +- frameworks/hical/meta.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frameworks/hical/Dockerfile b/frameworks/hical/Dockerfile index 4d52625c4..0e6deba30 100644 --- a/frameworks/hical/Dockerfile +++ b/frameworks/hical/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # Clone Hical(包含 HttpArena benchmark 文件在 docker/HttpArena/ 下) # HICAL_REF pin 到固定 commit,确保构建可复现;更新跑分时改此值 ARG HICAL_REPO=https://github.com/Hical61/Hical.git -ARG HICAL_REF=3f97b6db29405d413a0645529fcc036a5d52ebc6 +ARG HICAL_REF=a5abb27c59e604a5fe15dfde49c634de5a13efce WORKDIR /src RUN git init . && \ diff --git a/frameworks/hical/meta.json b/frameworks/hical/meta.json index 00e4eeeb3..d423731fe 100644 --- a/frameworks/hical/meta.json +++ b/frameworks/hical/meta.json @@ -5,7 +5,7 @@ "engine": "hical", "description": "Hical is a modern C++20/26 high-performance web framework built on Boost.Asio, featuring coroutine-based async I/O (boost::asio::awaitable), three-tier PMR memory pools, zero-copy HTTP parsing via picohttpparser, and a self-developed WebSocket stack (RFC 6455 with permessage-deflate). SO_REUSEPORT multi-acceptor model on Linux. Dual-track C++26 reflection layer (P2996 / C++20 macro fallback).", "repo": "https://github.com/Hical61/Hical", - "enabled": false, + "enabled": true, "tests": [ "baseline", "latency-1m", "latency-10k", "pipelined", From 02434401aa998c25c2740ce8374608aac8c6e6dd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 3 Sep 2026 09:04:00 +0000 Subject: [PATCH 2/2] Benchmark results: hical [skip ci] --- site/data/results/hical.json | 209 +++++++++ site/static/logs/json-comp/16384/hical.log | 448 +++++++++++++++++++ site/static/logs/latency-10k/1024/hical.log | 0 site/static/logs/latency-1m/1024/hical.log | 0 site/static/logs/limited-conn/4096/hical.log | 2 + 5 files changed, 659 insertions(+) create mode 100644 site/data/results/hical.json create mode 100644 site/static/logs/latency-10k/1024/hical.log create mode 100644 site/static/logs/latency-1m/1024/hical.log diff --git a/site/data/results/hical.json b/site/data/results/hical.json new file mode 100644 index 000000000..dfe6a9ddf --- /dev/null +++ b/site/data/results/hical.json @@ -0,0 +1,209 @@ +{ + "framework": "hical", + "results": { + "baseline-4096": { + "framework": "hical", + "language": "C++", + "rps": 3316539, + "avg_latency": "1.23ms", + "p99_latency": "6.76ms", + "cpu": "6610.9%", + "memory": "131MiB", + "connections": 4096, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "467.98MB/s", + "input_bw": "256.19MB/s", + "reconnects": 0, + "status_2xx": 16582696, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, + "echo-ws-16384": { + "framework": "hical", + "language": "C++", + "rps": 3351504, + "avg_latency": "4.86ms", + "p99_latency": "11.60ms", + "cpu": "6531.6%", + "memory": "509MiB", + "connections": 16384, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "22.76MB/s", + "reconnects": 0, + "status_2xx": 16757520, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, + "echo-ws-4096": { + "framework": "hical", + "language": "C++", + "rps": 3678523, + "avg_latency": "1.11ms", + "p99_latency": "6.73ms", + "cpu": "6550.2%", + "memory": "157MiB", + "connections": 4096, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "24.56MB/s", + "reconnects": 0, + "status_2xx": 18392616, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, + "echo-ws-512": { + "framework": "hical", + "language": "C++", + "rps": 3390647, + "avg_latency": "150us", + "p99_latency": "2.08ms", + "cpu": "6479.2%", + "memory": "46MiB", + "connections": 512, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "22.63MB/s", + "reconnects": 0, + "status_2xx": 16953235, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, + "json-comp-16384": { + "framework": "hical", + "language": "C++", + "rps": 256005, + "avg_latency": "58.25ms", + "p99_latency": "931.70ms", + "cpu": "6227.8%", + "memory": "637MiB", + "connections": 16384, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "348.29MB/s", + "input_bw": "19.04MB/s", + "reconnects": 48240, + "status_2xx": 1280027, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, + "json-comp-4096": { + "framework": "hical", + "language": "C++", + "rps": 260323, + "avg_latency": "15.65ms", + "p99_latency": "76.40ms", + "cpu": "6550.4%", + "memory": "226MiB", + "connections": 4096, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "354.16MB/s", + "input_bw": "19.36MB/s", + "reconnects": 50513, + "status_2xx": 1301616, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, + "latency-10k-1024": { + "framework": "hical", + "language": "C++", + "rps": 9983, + "avg_latency": "71.2us", + "p99_latency": "114.0us", + "cpu": "27.7%", + "memory": "52MiB", + "connections": 1024, + "threads": 64, + "duration": "20s", + "pipeline": 1, + "bandwidth": "1.47MB/s", + "reconnects": 0, + "status_2xx": 199680, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0, + "cpu_usec": 5802283, + "cpu_per_req_us": 29.0579, + "target_rate": 10000, + "rate_ratio": 0.9983, + "p99_9_latency": "177.0us" + }, + "latency-1m-1024": { + "framework": "hical", + "language": "C++", + "rps": 997737, + "avg_latency": "97.6us", + "p99_latency": "180.0us", + "cpu": "2735.3%", + "memory": "50MiB", + "connections": 1024, + "threads": 64, + "duration": "20s", + "pipeline": 1, + "bandwidth": "146.67MB/s", + "reconnects": 0, + "status_2xx": 19958016, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0, + "cpu_usec": 495768293, + "cpu_per_req_us": 24.8406, + "target_rate": 1000000, + "rate_ratio": 0.9977, + "p99_9_latency": "954.0us" + }, + "limited-conn-4096": { + "framework": "hical", + "language": "C++", + "rps": 2405974, + "avg_latency": "1.68ms", + "p99_latency": "22.80ms", + "cpu": "6435.4%", + "memory": "132MiB", + "connections": 4096, + "threads": 64, + "duration": "5s", + "pipeline": 1, + "bandwidth": "339.46MB/s", + "input_bw": "185.86MB/s", + "reconnects": 1203021, + "status_2xx": 12029870, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + }, + "pipelined-4096": { + "framework": "hical", + "language": "C++", + "rps": 4929317, + "avg_latency": "13.32ms", + "p99_latency": "35.30ms", + "cpu": "6308.7%", + "memory": "136MiB", + "connections": 4096, + "threads": 64, + "duration": "5s", + "pipeline": 16, + "bandwidth": "695.56MB/s", + "reconnects": 0, + "status_2xx": 24646589, + "status_3xx": 0, + "status_4xx": 0, + "status_5xx": 0 + } + } +} diff --git a/site/static/logs/json-comp/16384/hical.log b/site/static/logs/json-comp/16384/hical.log index e69de29bb..b3398462a 100644 --- a/site/static/logs/json-comp/16384/hical.log +++ b/site/static/logs/json-comp/16384/hical.log @@ -0,0 +1,448 @@ +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] diff --git a/site/static/logs/latency-10k/1024/hical.log b/site/static/logs/latency-10k/1024/hical.log new file mode 100644 index 000000000..e69de29bb diff --git a/site/static/logs/latency-1m/1024/hical.log b/site/static/logs/latency-1m/1024/hical.log new file mode 100644 index 000000000..e69de29bb diff --git a/site/static/logs/limited-conn/4096/hical.log b/site/static/logs/limited-conn/4096/hical.log index e69de29bb..0664f7b25 100644 --- a/site/static/logs/limited-conn/4096/hical.log +++ b/site/static/logs/limited-conn/4096/hical.log @@ -0,0 +1,2 @@ +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const'] +[hical] unhandled coroutine exception: remote_endpoint: Transport endpoint is not connected [system:107 at /usr/include/boost/asio/detail/reactive_socket_service.hpp:218:7 in function 'boost::asio::detail::reactive_socket_service::endpoint_type boost::asio::detail::reactive_socket_service::remote_endpoint(const implementation_type&, boost::system::error_code&) const']