How to view information about the juice when SO_DEBUG is enabled in the socket (s)?

int setsockopt(
  SOCKET s,
  int level,
  int optname,
  const char* optval,
  int optlen
);

SO_DEBUG

Windows Sockets service providers are encouraged (but not required) to supply debugging information if the SO_DEBUG option is specified by the application. The mechanism for generating debugging information and the form it takes is beyond the scope of this document.

I did not find any area.

Thank you for the information.

+3
source share
1 answer

This does not work on win32.

Enables debug output. Microsoft providers do not currently display any debugging information.

I believe that it has been pulled out by many other things in order to maintain some compatibility with the BSD socket APIs.

+2
source

All Articles