cache the TCP client address now #630
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "eive/fsfw:mueller/tcp-server-cache-client-addr"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I don't know why this API was not used. Keep the old call in case issues surface.
@ -124,2 +124,2 @@
// connSocket = accept(listenerTcpSocket, &clientSockAddr, &connectorSockAddrLen);
connSocket = accept(listenerTcpSocket, nullptr, nullptr);
connSocket = accept(listenerTcpSocket, &clientSockAddr, &connectorSockAddrLen);
// connSocket = accept(listenerTcpSocket, nullptr, nullptr);
Do we need that comment?
can probably remove it
comment removed
LGTM