-
Notifications
You must be signed in to change notification settings - Fork 14
/
IOCPDebug.cpp
56 lines (56 loc) · 1.02 KB
/
IOCPDebug.cpp
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
//#include "IOCPCommon.h"
//#include "IOCPBuffer.h"
//#include "IOCPBufferWriter.h"
//#include "IOCPBufferReader.h"
//#include "BaseIOCPServer.h"
//#include "PackageIOCP.h"
//#include "IOCPBuffer.h"
//#include "PackageIOCPClient.h"
//#include "TextIOCPServer.h"
//#include "TextIOCPClient.h"
//
//
//
//class MyF:public CTextIOCPClient
//{
//public:
// void NotifyReceivedStringBuffer(const char* lpszText)
// {
// fprintf(stderr,lpszText);
// }
//};
//
//int main(int argc,char** argv)
//{
// _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
//
//
// CTextIOCPServer BaseServer;
//
// BaseServer.Startup(20000,1,1000);
//
// CTextIOCPClient BaseClient;
//
// BaseClient.Connect("localhost",20000);
//
//
// //Sleep(1000);
// //BaseServer.Shutdown();
// //CTextClient myClient;
//
// //if(myClient.Connect("127.0.0.1",20000) == FALSE){
// // fprintf(stderr,"connect failed");
// // exit(0);
// //}
//
//
// //myClient.Send("Hello");
//
// while(true){
// getchar();
// BaseClient.Send("hello1111");
// }
//
//
// return 0;
//}