8000 start searching for the local port of a socket by dothebart · Pull Request #21833 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

start searching for the local port of a socket #21833

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jul 3, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add dummy implementations of new method
  • Loading branch information
dothebart committed Jul 2, 2025
commit 6121fb86425e6884a9828c523c5ebeadeb3bb551
1 change: 1 addition & 0 deletions tests/AsyncAgencyComm/AsyncAgencyCommTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ struct AsyncAgencyCommPoolMock final : public network::ConnectionPool {
_mock(mock),
_endpoint(std::move(endpoint)) {}

virtual std::string localEndpoint() override final { return "not implemented"; };
std::size_t requestsLeft() const override { return 1; }
State state() const override {
return fuerte::Connection::State::Connected;
Expand Down
2 changes: 2 additions & 0 deletions tests/Network/MethodsTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ struct DummyConnection final : public fuerte::Connection {

fuerte::Connection::State _state = fuerte::Connection::State::Connected;

virtual std::string localEndpoint() override final { return "not implemented"; };

fuerte::Error _err = fuerte::Error::NoError;
std::unique_ptr<fuerte::Response> _response;
int _sendRequestNum = 0;
Expand Down
0