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
The address was improperly stored in a sockaddr type, which was then access as
a sockaddr_in6, even though sizeof(sockaddr) < sizeof(sockaddr_in6). This
resulted in stack smashing. The proper type to use that can contain all
addresses is sockaddr_storage.
Fixes issue #107
0 commit comments