Skip to content

Commit 4263ced

Browse files
authored
Fix IPAddress Type mismatch between echo-requester and echo-responder. (project-chip#29419)
When using TCP, the echo-server was listening over IPv4 while the echo-requester was getting configured for IPv6. Normalize both sides to always use IPv6 over both TCP or MRP.
1 parent 475d927 commit 4263ced

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

src/messaging/tests/echo/echo_requester.cpp

+11
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,12 @@ int main(int argc, char * argv[])
217217
ExitNow(err = CHIP_ERROR_INVALID_ARGUMENT);
218218
}
219219

220+
if (gDestAddr.Type() != chip::Inet::IPAddressType::kIPv6)
221+
{
222+
printf("Echo Server IP address: %s is not of type IPv6\n", argv[1]);
223+
ExitNow(err = CHIP_ERROR_INVALID_ARGUMENT);
224+
}
225+
220226
InitializeChip();
221227

222228
if (gUseTCP)
@@ -264,6 +270,11 @@ int main(int argc, char * argv[])
264270
chip::DeviceLayer::PlatformMgr().RunEventLoop();
265271

266272
gUDPManager.Close();
273+
274+
if (gUseTCP)
275+
{
276+
gTCPManager.Disconnect(chip::Transport::PeerAddress::TCP(gDestAddr));
277+
}
267278
gTCPManager.Close();
268279

269280
Shutdown();

src/messaging/tests/echo/echo_responder.cpp

+1-6
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,7 @@ int main(int argc, char * argv[])
8484
if (useTCP)
8585
{
8686
err = gTCPManager.Init(chip::Transport::TcpListenParameters(chip::DeviceLayer::TCPEndPointManager())
87-
#if INET_CONFIG_ENABLE_IPV4
88-
.SetAddressType(chip::Inet::IPAddressType::kIPv4)
89-
#else
90-
.SetAddressType(chip::Inet::IPAddressType::kIPv6)
91-
#endif
92-
);
87+
.SetAddressType(chip::Inet::IPAddressType::kIPv6));
9388
SuccessOrExit(err);
9489

9590
err = gSessionManager.Init(&chip::DeviceLayer::SystemLayer(), &gTCPManager, &gMessageCounterManager, &gStorage,

0 commit comments

Comments
 (0)