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
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

8000
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
fix type
  • Loading branch information
dothebart committed Jul 2, 2025
commit 23168b2413e0d80ec96192cc2bf464f1442e2e56
2 changes: 1 addition & 1 deletion 3rdParty/fuerte/src/AsioSockets.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ std::string getConnectionNameS(SocketT& socket) {
addr_len = sizeof(asio_ns::detail::in6_addr_type);
port = reinterpret_cast<const asio_ns::detail::sockaddr_in6_type*>(&sa)->sin6_port;
//endpoint = std::string(addr, addr_len);
for (int i = 0; i < addr_len; i++) {
for (uint8_t i = 0; i < addr_len; i++) {
if (i > 0) {
endpoint.append(":");
}
Expand Down
0