You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remarks:length_error if the condition protocol().family() == AF_INET6 && s != sizeof(sock- addr_in6) || protocol().family() == AF_INET4 && s != sizeof(sockaddr_in) is true.
It could be changed to:
Remarks:length_error if either of the following conditions is true:
— protocol().family() == AF_INET6 && s != sizeof(sockaddr_in6),
— protocol().family() == AF_INET4 && s != sizeof(sockaddr_in).
But maybe it could be:
Remarks:length_error if s != size().
This isn't identical in the case where protocol.family() is neither AF_INET4 not AF_INET6 but that should be disallowed by the constructors.
The text was updated successfully, but these errors were encountered:
This runs into the right margin:
It could be changed to:
But maybe it could be:
This isn't identical in the case where
protocol.family()
is neitherAF_INET4
notAF_INET6
but that should be disallowed by the constructors.The text was updated successfully, but these errors were encountered: