WSADATA Structure
Visual Studio 2012
The WSADATA structure is used to store Windows Sockets initialization information returned by a call to the AfxSocketInit global function.
struct WSAData {
WORD wVersion;
WORD wHighVersion;
char szDescription[WSADESCRIPTION_LEN+1];
char szSystemStatus[WSASYSSTATUS_LEN+1];
unsigned short iMaxSockets;
unsigned short iMaxUdpDg;
char FAR * lpVendorInfo;
};
Note