Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Sep 9, 2024
1 parent 5310017 commit 081417f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions adnl/adnl-ext-server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,11 @@ void AdnlExtServerImpl::accepted(td::SocketFd fd) {
fd.close();
} else {
LOG(INFO) << "Accept from: " << addr << " connections: " << connection_count;
td::actor::create_actor<AdnlInboundConnection>(td::actor::ActorOptions().with_name("inconn").with_poll(),
std::move(fd), peer_table_, actor_id(this))
.release();
}
}

td::actor::create_actor<AdnlInboundConnection>(td::actor::ActorOptions().with_name("inconn").with_poll(),
std::move(fd), peer_table_, actor_id(this))
.release();
}

void AdnlExtServerImpl::decrypt_init_packet(AdnlNodeIdShort dst, td::BufferSlice data,
Expand Down

0 comments on commit 081417f

Please sign in to comment.