Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion lib/asio_server_connection.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,20 @@ class connection : public std::enable_shared_from_this<connection<socket_type>>,
void start() {
boost::system::error_code ec;

auto make_writefun = [original_self = this->shared_from_this()] {
return [weak = std::weak_ptr<connection>{original_self}]() {
auto self = weak.lock();
// If connection already got destroyed, the socket is already closed in particular.
// Therefore we can simply ignore further calls to write.
if (self) {
self->do_write();
}
};
};

handler_ = std::make_shared<http2_handler>(
GET_IO_SERVICE(socket_), socket_.lowest_layer().remote_endpoint(ec),
[this]() { do_write(); }, mux_);
make_writefun(), mux_);
if (handler_->start() != 0) {
stop();
return;
Expand Down