2021-06-24 07:09:25 +00:00
|
|
|
|
#include <iostream>
|
2021-06-30 09:31:56 +00:00
|
|
|
|
#include "tcp_server_libevent.h"
|
|
|
|
|
#include "winsock2.h"
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
2021-06-24 07:09:25 +00:00
|
|
|
|
|
|
|
|
|
int main(){
|
2021-06-30 09:31:56 +00:00
|
|
|
|
WORD wdVersion = MAKEWORD(2, 2);//定义自己需要的网络库版本,这里是2.2
|
|
|
|
|
WSADATA wdSockMsg;//这是一个结构体
|
|
|
|
|
int nRes = WSAStartup(wdVersion, &wdSockMsg);//打开一个套接字
|
|
|
|
|
if (0 != nRes)
|
|
|
|
|
{
|
|
|
|
|
switch (nRes)
|
|
|
|
|
{
|
|
|
|
|
case WSASYSNOTREADY:
|
|
|
|
|
printf("check your library");
|
|
|
|
|
break;
|
|
|
|
|
case WSAVERNOTSUPPORTED:
|
|
|
|
|
printf("need updated");
|
|
|
|
|
break;
|
|
|
|
|
case WSAEINPROGRESS:
|
|
|
|
|
printf("need reboot");
|
|
|
|
|
break;
|
|
|
|
|
case WSAEPROCLIM:
|
|
|
|
|
printf("sdfsdfsa");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (2 != HIBYTE(wdSockMsg.wVersion) || 2 != LOBYTE(wdSockMsg.wVersion))
|
|
|
|
|
{
|
|
|
|
|
printf("");
|
|
|
|
|
WSACleanup();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
std::cout<<"start server libevent\r\n";
|
|
|
|
|
test_tcp_server();
|
|
|
|
|
|
2021-06-24 07:09:25 +00:00
|
|
|
|
}
|