0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-03 09:56:38 -05:00

compat: document sockopt_arg_type definition

This commit is contained in:
fanquake 2022-06-28 17:09:45 +01:00
parent fb6db6fb0e
commit 3f1d2fb035
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1

View file

@ -85,6 +85,8 @@ typedef int32_t ssize_t;
#endif
#endif
// The type of the option value passed to getsockopt & setsockopt
// differs between Windows and non-Windows.
#ifndef WIN32
typedef void* sockopt_arg_type;
#else