-
Notifications
You must be signed in to change notification settings - Fork 0
/
WSVER.C
72 lines (62 loc) · 1.63 KB
/
WSVER.C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
//
// WSVer.c
//
// WSAStartup()から返される情報を出力します。
//
//
// オプションとして、要求したいバージョンを
// コマンドラインで渡すことが可能。
// メジャーバージョン番号に続けて
// マイナーバージョン番号を渡すこと。
//
// 例:
// バージョン1.1を要求するには WSVer 1 1
// バージョン2.0を要求するには WSVer 2 0
//
// もし試行するバージョンを指定しない場合には、
// プログラムはバージョン1.1を要求します。
//
#include <stdio.h>
#include <winsock.h>
// Utility function in wsedesc.c
LPCSTR WSErrorDescription(int iErrorCode);
void PrintWSAData(LPWSADATA pWSAData);
void main(int argc, char **argv)
{
WORD wVersionRequested = MAKEWORD(2,2);
WSADATA wsaData;
int rc;
if (argc == 3)
wVersionRequested = MAKEWORD(atol(argv[1]),
atol(argv[2]));
printf("\nRequesting version %d.%d\n",
LOBYTE(wVersionRequested),
HIBYTE(wVersionRequested));
rc = WSAStartup(wVersionRequested, &wsaData);
if (!rc)
PrintWSAData(&wsaData);
else
fprintf(stderr,"\nWSAStartup() error (%d) %s\n",
rc,
WSErrorDescription(rc));
WSACleanup();
}
void PrintWSAData(LPWSADATA pWSAData)
{
printf("\nWSADATA");
printf("\n----------------------");
printf("\nVersion..............: %d.%d",
LOBYTE(pWSAData->wVersion),
HIBYTE(pWSAData->wVersion));
printf("\nHighVersion..........: %d.%d",
LOBYTE(pWSAData->wHighVersion),
HIBYTE(pWSAData->wHighVersion));
printf("\nDescription..........: %s",
pWSAData->szDescription);
printf("\nSystem status........: %s",
pWSAData->szSystemStatus);
printf("\nMax number of sockets: %d",
pWSAData->iMaxSockets);
printf("\nMAX UDP datagram size: %d\n",
pWSAData->iMaxUdpDg);
}