Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
* :beetle: In Java, fix `LinkStatusListener` not getting called. Also added the missing
`onUnknownDestinationAddress` and `onUnknownSourceAddress` callbacks. All the callbacks
now have an empty default implementation. See [#441](https://github.com/dnp3/opendnp3/pull/441).
* :beetle: Added extra log when closing a new connection based on `ServerAcceptMode::CloseNew`.
See [#442](https://github.com/dnp3/opendnp3/pull/442).

### 3.1.1 ###
* :beetle: Fix static octet string serilazation bug.
Expand Down
1 change: 1 addition & 0 deletions cpp/lib/src/channel/IOHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ void IOHandler::OnNewChannel(const std::shared_ptr<IAsyncChannel>& channel)
// close the new channel instead
if (this->channel && !this->close_existing)
{
SIMPLE_LOG_BLOCK(this->logger, flags::WARN, "Existing channel, closing new connection");
channel->Shutdown();
return;
}
Expand Down